POST api/Menu/GetSellerMenuProducts

Cayci Menu Urun Listesi

Request Information

URI Parameters

None.

Body Parameters

GetSellerMenuProductsInput
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:
<GetSellerMenuProductsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.MenuServices.Dtos">
  <Token xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.Base.Dtos">sample string 2</Token>
  <Keyword>sample string 1</Keyword>
</GetSellerMenuProductsInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of SellerMenuProductDto
NameDescriptionTypeAdditional information
Id

integer

None.

CategoryId

integer

None.

CategoryName

string

None.

Name

string

None.

Price

decimal number

None.

IconUrl

string

None.

Priority

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "CategoryId": 2,
    "CategoryName": "YİYECEK",
    "Name": "sample string 3",
    "Price": 4.0,
    "IconUrl": "http://www.bicaysoyle.com/Content/images/menuIcons/sample%20string%205",
    "Priority": 6
  },
  {
    "Id": 1,
    "CategoryId": 2,
    "CategoryName": "YİYECEK",
    "Name": "sample string 3",
    "Price": 4.0,
    "IconUrl": "http://www.bicaysoyle.com/Content/images/menuIcons/sample%20string%205",
    "Priority": 6
  }
]

text/xml

Sample:
<ArrayOfSellerMenuProductDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.MenuServices.Dtos">
  <SellerMenuProductDto>
    <CategoryId>2</CategoryId>
    <IconUrl>http://www.bicaysoyle.com/Content/images/menuIcons/sample%20string%205</IconUrl>
    <Id>1</Id>
    <Name>sample string 3</Name>
    <Price>4</Price>
    <Priority>6</Priority>
  </SellerMenuProductDto>
  <SellerMenuProductDto>
    <CategoryId>2</CategoryId>
    <IconUrl>http://www.bicaysoyle.com/Content/images/menuIcons/sample%20string%205</IconUrl>
    <Id>1</Id>
    <Name>sample string 3</Name>
    <Price>4</Price>
    <Priority>6</Priority>
  </SellerMenuProductDto>
</ArrayOfSellerMenuProductDto>