POST api/Menu/GetSellerMenu

Cayci Icin Menu Listesi

Request Information

URI Parameters

None.

Body Parameters

GetSellerMenuInput
NameDescriptionTypeAdditional information
Keyword

string

None.

CategoryId

integer

None.

Token

string

None.

Request Formats

application/json, text/json

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

text/xml

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

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage

Collection of SellerMenuDto
NameDescriptionTypeAdditional information
MenuId

integer

None.

CategoryId

integer

None.

CategoryName

string

None.

Name

string

None.

Price

decimal number

None.

Priority

integer

None.

IconUrl

string

None.

IsExists

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MenuId": 1,
    "CategoryId": 2,
    "CategoryName": "sample string 3",
    "Name": "sample string 4",
    "Price": 5.0,
    "Priority": 1,
    "IconUrl": "http://www.bicaysoyle.com/Content/images/menuIcons/sample%20string%206",
    "IsExists": true
  },
  {
    "MenuId": 1,
    "CategoryId": 2,
    "CategoryName": "sample string 3",
    "Name": "sample string 4",
    "Price": 5.0,
    "Priority": 1,
    "IconUrl": "http://www.bicaysoyle.com/Content/images/menuIcons/sample%20string%206",
    "IsExists": true
  }
]

text/xml

Sample:
<ArrayOfSellerMenuDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BiCay.Services.MenuServices.Dtos">
  <SellerMenuDto>
    <CategoryId>2</CategoryId>
    <CategoryName>sample string 3</CategoryName>
    <IconUrl>http://www.bicaysoyle.com/Content/images/menuIcons/sample%20string%206</IconUrl>
    <IsExists>true</IsExists>
    <MenuId>1</MenuId>
    <Name>sample string 4</Name>
    <Price>5</Price>
    <Priority>1</Priority>
  </SellerMenuDto>
  <SellerMenuDto>
    <CategoryId>2</CategoryId>
    <CategoryName>sample string 3</CategoryName>
    <IconUrl>http://www.bicaysoyle.com/Content/images/menuIcons/sample%20string%206</IconUrl>
    <IsExists>true</IsExists>
    <MenuId>1</MenuId>
    <Name>sample string 4</Name>
    <Price>5</Price>
    <Priority>1</Priority>
  </SellerMenuDto>
</ArrayOfSellerMenuDto>