GetRecipe

GET /recipes/{recipetoken}

Returns an array with all the items of that recipe

Responses

  • 200 application/json

    Default Response

    Hide response attributes Show response attributes object
    • token string Required
    • items array[object] Required
      Hide items attributes Show items attributes object
  • 400 application/json

    Bad Request

    Bad Request

  • 404 application/json

    Not Found

    Not Found

  • 503 application/json

    Service Unavailable

    Service Unavailable

GET /recipes/{recipetoken}
curl \
 --request GET 'http://api.example.com/recipes/{recipetoken}'
Response examples (200)
{
  "token": "string",
  "items": [
    {
      "name": "string",
      "count": 42.0
    }
  ]
}
Response examples (400)
string
Response examples (404)
string
Response examples (503)
string