POST api/Agnet/ModifyCustomerInfo
Request Information
URI Parameters
None.
Body Parameters
ModifyCustomerInfoModel| Name | Description | Type | Additional information |
|---|---|---|---|
| C_ID | integer |
None. |
|
| C_TEL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"C_ID": 1,
"C_TEL": "sample string 2"
}
application/xml, text/xml
Sample:
<ModifyCustomerInfoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model.Agent"> <C_ID>1</C_ID> <C_TEL>sample string 2</C_TEL> </ModifyCustomerInfoModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | integer |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 1,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<ResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model.Agent"> <Code>1</Code> <Message>sample string 2</Message> </ResultModel>