BigOven · Example Payload

Recipe_Getactiverecipe

Recipe

Recipe_Getactiverecipe 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_GetActiveRecipe",
  "method": "GET",
  "path": "/recipe/get/active/recipe",
  "tags": [
    "Recipe"
  ],
  "summary": "Returns last active recipe for the user",
  "parameters": [
    {
      "name": "userName",
      "in": "query",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/BigOven.Result"
    }
  }
}