POST api/Menu/GetMenuProductsBySellerId

Kullanici/Alt Kullanici icin Cayciya Ait Menu Urun Listesi

Request Information

URI Parameters

None.

Body Parameters

GetMenuProductsBySellerInput
NameDescriptionTypeAdditional information
SellerId

globally unique identifier

None.

Keyword

string

None.

Token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SellerId": "f6577854-7653-4f60-8ddc-16d6f96caff7",
  "Keyword": "sample string 2",
  "Token": "sample string 3"
}

text/xml

Sample:
<GetMenuProductsBySellerInput 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 3</Token>
  <Keyword>sample string 2</Keyword>
  <SellerId>f6577854-7653-4f60-8ddc-16d6f96caff7</SellerId>
</GetMenuProductsBySellerInput>

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>