POST api/CustomerComplaint/{id}?refid={refid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| refid | integer |
Required |
Body Parameters
DTOCCUpdate| Name | Description | Type | Additional information |
|---|---|---|---|
| cc1 | string |
None. |
|
| cc2 | string |
None. |
|
| cc3 | string |
None. |
|
| cc4 | string |
None. |
|
| cc5 | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"cc1": "sample string 1",
"cc2": "sample string 2",
"cc3": "sample string 3",
"cc4": "sample string 4",
"cc5": "sample string 5"
}
application/xml, text/xml
Sample:
<DTOCCUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/apiAndroid.Controllers"> <cc1>sample string 1</cc1> <cc2>sample string 2</cc2> <cc3>sample string 3</cc3> <cc4>sample string 4</cc4> <cc5>sample string 5</cc5> </DTOCCUpdate>
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>