POST api/Sop/UpsertSops
Request Information
URI Parameters
None.
Body Parameters
SopModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| file_name | string |
None. |
|
| file_url | string |
None. |
|
| created_date | date |
None. |
|
| Created_by | integer |
None. |
|
| modify_date | date |
None. |
|
| Modify_by | integer |
None. |
|
| is_active | integer |
None. |
|
| is_deleted | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"file_name": "sample string 2",
"file_url": "sample string 3",
"created_date": "2025-12-22T16:15:43.6889057+05:30",
"Created_by": 5,
"modify_date": "2025-12-22T16:15:43.6889057+05:30",
"Modify_by": 7,
"is_active": 8,
"is_deleted": 9
}
application/xml, text/xml
Sample:
<SopModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NxModel"> <Created_by>5</Created_by> <Modify_by>7</Modify_by> <created_date>2025-12-22T16:15:43.6889057+05:30</created_date> <file_name>sample string 2</file_name> <file_url>sample string 3</file_url> <id>1</id> <is_active>8</is_active> <is_deleted>9</is_deleted> <modify_date>2025-12-22T16:15:43.6889057+05:30</modify_date> </SopModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />