POST api/Breakdown?username={username}&empid={empid}&div={div}&intid={intid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| username | string |
Required |
|
| empid | integer |
Required |
|
| div | integer |
Required |
|
| intid | integer |
Required |
Body Parameters
RectificationPost| Name | Description | Type | Additional information |
|---|---|---|---|
| ActionTaken | string |
None. |
|
| BreakdownRsn | string |
None. |
|
| Remarks | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ActionTaken": "sample string 1",
"BreakdownRsn": "sample string 2",
"Remarks": "sample string 3"
}
application/xml, text/xml
Sample:
<RectificationPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiAndroid.Controllers"> <ActionTaken>sample string 1</ActionTaken> <BreakdownRsn>sample string 2</BreakdownRsn> <Remarks>sample string 3</Remarks> </RectificationPost>
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>