BigOven · Example Payload

Note_Delete

Note

Note_Delete 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_Delete",
  "method": "DELETE",
  "path": "/recipe/{recipeId}/note/{noteId}",
  "tags": [
    "Note"
  ],
  "summary": "Delete a review\r\n                do a DELETE Http request of /note/{ID}",
  "parameters": [
    {
      "name": "recipeId",
      "in": "path",
      "required": true,
      "description": "recipeId (int)",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    },
    {
      "name": "noteId",
      "in": "path",
      "required": true,
      "description": "noteId (int)",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/System.Object"
    }
  }
}