POST api/CustomerUser/ChildUserStatusChange

Alt Kullanici 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": "c177d49a-7b19-4872-aaef-68d6dad61813",
  "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>c177d49a-7b19-4872-aaef-68d6dad61813</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>