POST api/Iom/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
IomData| Name | Description | Type | Additional information |
|---|---|---|---|
| entry_type | string |
None. |
|
| entry_date | date |
None. |
|
| issue_date | date |
None. |
|
| customer_id | integer |
None. |
|
| customer | string |
None. |
|
| preparedby_id | integer |
None. |
|
| preparedby | string |
None. |
|
| reviewedby_id | integer |
None. |
|
| reviewedby | string |
None. |
|
| subject | string |
None. |
|
| message | string |
None. |
|
| division_no | integer |
None. |
|
| created_by | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"entry_type": "sample string 1",
"entry_date": "2026-01-11T04:38:07.024299+05:30",
"issue_date": "2026-01-11T04:38:07.024299+05:30",
"customer_id": 4,
"customer": "sample string 5",
"preparedby_id": 6,
"preparedby": "sample string 7",
"reviewedby_id": 8,
"reviewedby": "sample string 9",
"subject": "sample string 10",
"message": "sample string 11",
"division_no": 12,
"created_by": "sample string 13"
}
application/xml, text/xml
Sample:
<IomData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiAndroid.Controllers"> <created_by>sample string 13</created_by> <customer>sample string 5</customer> <customer_id>4</customer_id> <division_no>12</division_no> <entry_date>2026-01-11T04:38:07.024299+05:30</entry_date> <entry_type>sample string 1</entry_type> <issue_date>2026-01-11T04:38:07.024299+05:30</issue_date> <message>sample string 11</message> <preparedby>sample string 7</preparedby> <preparedby_id>6</preparedby_id> <reviewedby>sample string 9</reviewedby> <reviewedby_id>8</reviewedby_id> <subject>sample string 10</subject> </IomData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
rtnMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| result | boolean |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": true,
"message": "sample string 2"
}
application/xml, text/xml
Sample:
<rtnMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiAndroid.Controllers"> <message>sample string 2</message> <result>true</result> </rtnMessage>