POST api/CustomerSeller/GetCustomers

Musteri Listele

Request Information

URI Parameters

None.

Body Parameters

GetCustomersInput
NameDescriptionTypeAdditional information
Keyword

string

None.

Token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Keyword": "sample string 1",
  "Token": "sample string 2"
}

text/xml

Sample:
<GetCustomersInput 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>
  <Keyword>sample string 1</Keyword>
</GetCustomersInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of UserDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Name

string

None.

CompanyName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "c733fc92-cbab-4e7a-8bfb-760d398dc3ea",
    "Name": "sample string 2",
    "CompanyName": "sample string 3"
  },
  {
    "Id": "c733fc92-cbab-4e7a-8bfb-760d398dc3ea",
    "Name": "sample string 2",
    "CompanyName": "sample string 3"
  }
]

text/xml

Sample:
<ArrayOfUserDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos">
  <UserDto>
    <CompanyName>sample string 3</CompanyName>
    <Id>c733fc92-cbab-4e7a-8bfb-760d398dc3ea</Id>
    <Name>sample string 2</Name>
  </UserDto>
  <UserDto>
    <CompanyName>sample string 3</CompanyName>
    <Id>c733fc92-cbab-4e7a-8bfb-760d398dc3ea</Id>
    <Name>sample string 2</Name>
  </UserDto>
</ArrayOfUserDto>