GET api/RecipeIngredient

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of RecipeIngredientClass
NameDescriptionTypeAdditional information
RecipeIngredientID

integer

None.

MasterListItemID

integer

None.

ItemName

string

None.

Quantity

string

None.

QuantityUnits

string

None.

Notes

string

None.

RecipeID

integer

None.

RecipeIngredientCategoryID

integer

None.

UpdatedAt

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RecipeIngredientID": 1,
    "MasterListItemID": null,
    "ItemName": "sample string 2",
    "Quantity": "sample string 3",
    "QuantityUnits": "sample string 4",
    "Notes": "sample string 5",
    "RecipeID": null,
    "RecipeIngredientCategoryID": null,
    "UpdatedAt": null
  },
  {
    "RecipeIngredientID": 1,
    "MasterListItemID": null,
    "ItemName": "sample string 2",
    "Quantity": "sample string 3",
    "QuantityUnits": "sample string 4",
    "Notes": "sample string 5",
    "RecipeID": null,
    "RecipeIngredientCategoryID": null,
    "UpdatedAt": null
  }
]

application/xml, text/xml

Sample:
<ArrayOfRecipeIngredientClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService">
  <RecipeIngredientClass>
    <UpdatedAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService.Models" />
    <ItemName>sample string 2</ItemName>
    <MasterListItemID i:nil="true" />
    <Notes>sample string 5</Notes>
    <Quantity>sample string 3</Quantity>
    <QuantityUnits>sample string 4</QuantityUnits>
    <RecipeID i:nil="true" />
    <RecipeIngredientCategoryID i:nil="true" />
    <RecipeIngredientID>1</RecipeIngredientID>
  </RecipeIngredientClass>
  <RecipeIngredientClass>
    <UpdatedAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService.Models" />
    <ItemName>sample string 2</ItemName>
    <MasterListItemID i:nil="true" />
    <Notes>sample string 5</Notes>
    <Quantity>sample string 3</Quantity>
    <QuantityUnits>sample string 4</QuantityUnits>
    <RecipeID i:nil="true" />
    <RecipeIngredientCategoryID i:nil="true" />
    <RecipeIngredientID>1</RecipeIngredientID>
  </RecipeIngredientClass>
</ArrayOfRecipeIngredientClass>