BigOven · Example Payload

Images_Getrecipephotos

Images

Images_Getrecipephotos 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_GetRecipePhotos",
  "method": "GET",
  "path": "/recipe/{recipeId}/photos",
  "tags": [
    "Images"
  ],
  "summary": "Get all the photos for a recipe",
  "parameters": [
    {
      "name": "recipeId",
      "in": "path",
      "required": true,
      "description": "Recipe ID (required)",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    },
    {
      "name": "pg",
      "in": "query",
      "required": false,
      "description": "",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    },
    {
      "name": "rpp",
      "in": "query",
      "required": false,
      "description": "",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/API2.Controllers.WebAPI.ImagesController.RecipePhotosResponse"
    }
  }
}