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": "def86e7a-d214-43db-a5ff-c2a82c4dcd19",
"CustomerId": "7786cb58-f9eb-4771-a294-ed9739918d2e",
"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>7786cb58-f9eb-4771-a294-ed9739918d2e</CustomerId> <NewInternalCode>sample string 3</NewInternalCode> <ShopId>def86e7a-d214-43db-a5ff-c2a82c4dcd19</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>