BigOven · Example Payload

Recipe_Delete

Recipe

Recipe_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": "Recipe_Delete",
  "method": "DELETE",
  "path": "/recipe/{id}",
  "tags": [
    "Recipe"
  ],
  "summary": "Delete a Recipe (you must be authenticated as an owner of the recipe)",
  "parameters": [
    {
      "name": "id",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "format": "int32",
        "type": "integer"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/System.Object"
    }
  }
}