GET api/Catering/GetDefaultFoodExceptions

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of RestaurantPackageFoodExceptionView
NameDescriptionTypeAdditional information
FoodExceptionId

integer

None.

FoodExceptionName

string

None.

Selected

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "foodExceptionId": 1,
    "foodExceptionName": "sample string 2",
    "selected": true
  },
  {
    "foodExceptionId": 1,
    "foodExceptionName": "sample string 2",
    "selected": true
  }
]

text/html

Sample:
[{"foodExceptionId":1,"foodExceptionName":"sample string 2","selected":true},{"foodExceptionId":1,"foodExceptionName":"sample string 2","selected":true}]

application/xml, text/xml

Sample:
<ArrayOfRestaurantPackageFoodExceptionView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EB.Service.Contracts.Api">
  <RestaurantPackageFoodExceptionView>
    <FoodExceptionId>1</FoodExceptionId>
    <FoodExceptionName>sample string 2</FoodExceptionName>
    <Selected>true</Selected>
  </RestaurantPackageFoodExceptionView>
  <RestaurantPackageFoodExceptionView>
    <FoodExceptionId>1</FoodExceptionId>
    <FoodExceptionName>sample string 2</FoodExceptionName>
    <Selected>true</Selected>
  </RestaurantPackageFoodExceptionView>
</ArrayOfRestaurantPackageFoodExceptionView>