POST api/CustomerSeller/CustomerStatusChange

Musteri Durumu Degistir

Request Information

URI Parameters

None.

Body Parameters

CustomerStatusChangeInput
NameDescriptionTypeAdditional information
CustomerId

globally unique identifier

None.

Status

integer

None.

Token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": "778a3263-abbe-4fcf-a138-a20806a64447",
  "Status": 2,
  "Token": "sample string 3"
}

text/xml

Sample:
<CustomerStatusChangeInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos">
  <Token xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.Base.Dtos">sample string 3</Token>
  <CustomerId>778a3263-abbe-4fcf-a138-a20806a64447</CustomerId>
  <Status>2</Status>
</CustomerStatusChangeInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CustomerStatusChangeDto
NameDescriptionTypeAdditional information
Status

integer

None.

StatusText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 1,
  "StatusText": "sample string 2"
}

text/xml

Sample:
<CustomerStatusChangeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos">
  <Status>1</Status>
  <StatusText>sample string 2</StatusText>
</CustomerStatusChangeDto>