POST api/CustomerSeller/GetEmployees

Ocakcilari Listele

Request Information

URI Parameters

None.

Body Parameters

GetEmployeesInput
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:
<GetEmployeesInput 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>
</GetEmployeesInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of SellerEmployeeDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Username

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "9cd0de6f-7c77-4cd6-a60f-844bf9ae3255",
    "Username": "sample string 2"
  },
  {
    "Id": "9cd0de6f-7c77-4cd6-a60f-844bf9ae3255",
    "Username": "sample string 2"
  }
]

text/xml

Sample:
<ArrayOfSellerEmployeeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.CustomerServices.Dtos">
  <SellerEmployeeDto>
    <Id>9cd0de6f-7c77-4cd6-a60f-844bf9ae3255</Id>
    <Username>sample string 2</Username>
  </SellerEmployeeDto>
  <SellerEmployeeDto>
    <Id>9cd0de6f-7c77-4cd6-a60f-844bf9ae3255</Id>
    <Username>sample string 2</Username>
  </SellerEmployeeDto>
</ArrayOfSellerEmployeeDto>