POST api/Menu/GetOrderMenu

Siparis Menu Listesi

Request Information

URI Parameters

None.

Body Parameters

GetOrderMenuInput
NameDescriptionTypeAdditional information
SellerId

globally unique identifier

None.

Token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SellerId": "1b2c6da4-62bf-43f6-bcb3-639c565a57fb",
  "Token": "sample string 2"
}

text/xml

Sample:
<GetOrderMenuInput 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>
  <SellerId>1b2c6da4-62bf-43f6-bcb3-639c565a57fb</SellerId>
</GetOrderMenuInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of OrderMenuDto
NameDescriptionTypeAdditional information
MenuId

integer

None.

CategoryId

integer

None.

CategoryName

string

None.

Name

string

None.

Price

decimal number

None.

IconUrl

string

None.

Response Formats

application/json, text/json

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

text/xml

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