POST api/v1/customer/UpdateInternalCode
Request Information
URI Parameters
None.
Body Parameters
CustomerUpdateInternalCodeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ShopId | globally unique identifier |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| NewInternalCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ShopId": "ba54fa90-e188-4b86-af8e-2eed43933312",
"CustomerId": "8763a779-6351-426a-b6e5-a9dc18d0df81",
"NewInternalCode": "sample string 3"
}
application/xml, text/xml
Sample:
<CustomerUpdateInternalCodeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Area.API.Data"> <CustomerId>8763a779-6351-426a-b6e5-a9dc18d0df81</CustomerId> <NewInternalCode>sample string 3</NewInternalCode> <ShopId>ba54fa90-e188-4b86-af8e-2eed43933312</ShopId> </CustomerUpdateInternalCodeRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AjaxBaseResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ExitCode | ExitCodes |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ExitCode": 0,
"Message": "sample string 1",
"Data": {}
}
application/xml, text/xml
Sample:
<AjaxBaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Area.API.Data"> <Data /> <ExitCode>Ok</ExitCode> <Message>sample string 1</Message> </AjaxBaseResponse>