POST api/v1/customer/UpdateInternalCode

Request Information

URI Parameters

None.

Body Parameters

CustomerUpdateInternalCodeRequest
NameDescriptionTypeAdditional information
ShopId

globally unique identifier

None.

CustomerId

globally unique identifier

None.

NewInternalCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ShopId": "11924a97-0a86-40dd-9015-0f5d648ac01c",
  "CustomerId": "e11d6f07-ad91-4cd5-84f9-1a2587fec79d",
  "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>e11d6f07-ad91-4cd5-84f9-1a2587fec79d</CustomerId>
  <NewInternalCode>sample string 3</NewInternalCode>
  <ShopId>11924a97-0a86-40dd-9015-0f5d648ac01c</ShopId>
</CustomerUpdateInternalCodeRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AjaxBaseResponse
NameDescriptionTypeAdditional 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>