BigOven · Example Payload

Collection_Collections

Collection

Collection_Collections 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": "Collection_Collections",
  "method": "GET",
  "path": "/collections",
  "tags": [
    "Collection"
  ],
  "summary": "Get the list of current, seasonal recipe collections. From here, you can use the /collection/{id} endpoint to retrieve the recipes in those collections.",
  "parameters": [
    {
      "name": "test",
      "in": "query",
      "required": false,
      "description": "",
      "schema": {
        "type": "string"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "items": {
        "$ref": "#/components/schemas/BigOven.Model.API2.CollectionInfo"
      },
      "type": "array"
    }
  }
}