GET api/RecipeCategory

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of RecipeCategoryClass
NameDescriptionTypeAdditional information
RecipeCategoryID

integer

None.

RecipeCategory

string

None.

UpdatedAt

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RecipeCategoryID": 1,
    "RecipeCategory": "sample string 2",
    "UpdatedAt": null
  },
  {
    "RecipeCategoryID": 1,
    "RecipeCategory": "sample string 2",
    "UpdatedAt": null
  }
]

application/xml, text/xml

Sample:
<ArrayOfRecipeCategoryClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService">
  <RecipeCategoryClass>
    <UpdatedAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService.Models" />
    <RecipeCategory>sample string 2</RecipeCategory>
    <RecipeCategoryID>1</RecipeCategoryID>
  </RecipeCategoryClass>
  <RecipeCategoryClass>
    <UpdatedAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService.Models" />
    <RecipeCategory>sample string 2</RecipeCategory>
    <RecipeCategoryID>1</RecipeCategoryID>
  </RecipeCategoryClass>
</ArrayOfRecipeCategoryClass>