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": "3e3d8984-1074-491e-9d9c-9596de4a13d1",
"CustomerId": "99649b1d-991b-4feb-bf20-ca75fbe9ab0c",
"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>99649b1d-991b-4feb-bf20-ca75fbe9ab0c</CustomerId> <NewInternalCode>sample string 3</NewInternalCode> <ShopId>3e3d8984-1074-491e-9d9c-9596de4a13d1</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>