POST api/CustomerSeller/GetCustomerStatus

Musteri Durumu

Request Information

URI Parameters

None.

Body Parameters

GetCustomerStatusInput
NameDescriptionTypeAdditional information
CustomerId

globally unique identifier

None.

Token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CustomerId": "780b5b83-9bd2-4203-8f3e-197ed61ae822",
  "Token": "sample string 2"
}

text/xml

Sample:
<GetCustomerStatusInput 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 2</Token>
  <CustomerId>780b5b83-9bd2-4203-8f3e-197ed61ae822</CustomerId>
</GetCustomerStatusInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CustomerStatusDto
NameDescriptionTypeAdditional information
Status

integer

None.

StatusText

string

None.

Response Formats

application/json, text/json

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

text/xml

Sample:
<CustomerStatusDto 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>
</CustomerStatusDto>