GET api/RecipeIngredientCategory

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of RecipeIngredientCategoryClass
NameDescriptionTypeAdditional information
RecipeIngredientCategoryID

integer

None.

RecipeID

integer

None.

CategoryName

string

None.

CategoryOrder

integer

None.

UpdatedAt

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RecipeIngredientCategoryID": 1,
    "RecipeID": null,
    "CategoryName": "sample string 2",
    "CategoryOrder": null,
    "UpdatedAt": null
  },
  {
    "RecipeIngredientCategoryID": 1,
    "RecipeID": null,
    "CategoryName": "sample string 2",
    "CategoryOrder": null,
    "UpdatedAt": null
  }
]

application/xml, text/xml

Sample:
<ArrayOfRecipeIngredientCategoryClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService">
  <RecipeIngredientCategoryClass>
    <UpdatedAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService.Models" />
    <CategoryName>sample string 2</CategoryName>
    <CategoryOrder i:nil="true" />
    <RecipeID i:nil="true" />
    <RecipeIngredientCategoryID>1</RecipeIngredientCategoryID>
  </RecipeIngredientCategoryClass>
  <RecipeIngredientCategoryClass>
    <UpdatedAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService.Models" />
    <CategoryName>sample string 2</CategoryName>
    <CategoryOrder i:nil="true" />
    <RecipeID i:nil="true" />
    <RecipeIngredientCategoryID>1</RecipeIngredientCategoryID>
  </RecipeIngredientCategoryClass>
</ArrayOfRecipeIngredientCategoryClass>