BigOven · Example Payload

Note_Get

Note

Note_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": "Note_Get",
  "method": "GET",
  "path": "/recipe/{recipeId}/note/{noteId}",
  "tags": [
    "Note"
  ],
  "summary": "Get a given note. Make sure you're passing authentication information in the header for the user who owns the note.",
  "parameters": [
    {
      "name": "recipeId",
      "in": "path",
      "required": true,
      "description": "recipe identifier (integer)",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    },
    {
      "name": "noteId",
      "in": "path",
      "required": true,
      "description": "The note ID (note -- it's not the RecipeID)",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/BigOven.Model.API.RecipeNote"
    }
  }
}