GET api/RecipeCategoryRecipes/GetSinceUTC/{minDTO}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
minDTO

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of RecipeCategoryRecipesClass
NameDescriptionTypeAdditional information
RecipeCategoryRecipeID

integer

None.

RecipeID

integer

None.

RecipeCategoryID

integer

None.

UpdatedAt

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "RecipeCategoryRecipeID": 1,
    "RecipeID": null,
    "RecipeCategoryID": null,
    "UpdatedAt": null
  },
  {
    "RecipeCategoryRecipeID": 1,
    "RecipeID": null,
    "RecipeCategoryID": null,
    "UpdatedAt": null
  }
]

application/xml, text/xml

Sample:
<ArrayOfRecipeCategoryRecipesClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService">
  <RecipeCategoryRecipesClass>
    <UpdatedAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService.Models" />
    <RecipeCategoryID i:nil="true" />
    <RecipeCategoryRecipeID>1</RecipeCategoryRecipeID>
    <RecipeID i:nil="true" />
  </RecipeCategoryRecipesClass>
  <RecipeCategoryRecipesClass>
    <UpdatedAt xmlns:d3p1="http://schemas.datacontract.org/2004/07/System" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/ShoppingService.Models" />
    <RecipeCategoryID i:nil="true" />
    <RecipeCategoryRecipeID>1</RecipeCategoryRecipeID>
    <RecipeID i:nil="true" />
  </RecipeCategoryRecipesClass>
</ArrayOfRecipeCategoryRecipesClass>