BigOven · Example Payload

Images_Get

Images

Images_Get is an example object payload from BigOven, with 7 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathtagssummaryparametersresponse

Example Payload

Raw ↑
{
  "operationId": "Images_Get",
  "method": "GET",
  "path": "/recipe/{recipeId}/images",
  "tags": [
    "Images"
  ],
  "summary": "Get all the images for a recipe. DEPRECATED. Please use /recipe/{recipeId}/photos.",
  "parameters": [
    {
      "name": "recipeId",
      "in": "path",
      "required": true,
      "description": "Recipe ID (required)",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "items": {
        "$ref": "#/components/schemas/BigOven.Model.API.Image"
      },
      "type": "array"
    }
  }
}