BigOven · Example Payload

Recipe_Getstep

Recipe

Recipe_Getstep 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": "Recipe_GetStep",
  "method": "POST",
  "path": "/recipe/get/saved/step",
  "tags": [
    "Recipe"
  ],
  "summary": "Gets recipe single step as text",
  "parameters": [
    {
      "name": "userName",
      "in": "query",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "recipeId",
      "in": "query",
      "required": true,
      "description": "",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    },
    {
      "name": "stepId",
      "in": "query",
      "required": true,
      "description": "",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "type": "string"
    }
  }
}