POST api/CustomerUser/GetSellers

Cayci Listele

Request Information

URI Parameters

None.

Body Parameters

GetSellersInput
NameDescriptionTypeAdditional information
Token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Token": "sample string 1"
}

text/xml

Sample:
<GetSellersInput 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 1</Token>
</GetSellersInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of UserSellerDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

CompanyName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "aaa6d0ad-bbaf-40fd-a2ba-56cea91cd926",
    "Name": "sample string 2",
    "CompanyName": "sample string 3"
  },
  {
    "Id": "aaa6d0ad-bbaf-40fd-a2ba-56cea91cd926",
    "Name": "sample string 2",
    "CompanyName": "sample string 3"
  }
]

text/xml

Sample:
<ArrayOfUserSellerDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos">
  <UserSellerDto>
    <CompanyName>sample string 3</CompanyName>
    <Id>aaa6d0ad-bbaf-40fd-a2ba-56cea91cd926</Id>
    <Name>sample string 2</Name>
  </UserSellerDto>
  <UserSellerDto>
    <CompanyName>sample string 3</CompanyName>
    <Id>aaa6d0ad-bbaf-40fd-a2ba-56cea91cd926</Id>
    <Name>sample string 2</Name>
  </UserSellerDto>
</ArrayOfUserSellerDto>