BigOven · Example Payload

Grocerylist_Deleteitembyguid

GroceryList

Grocerylist_Deleteitembyguid 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": "GroceryList_DeleteItemByGuid",
  "method": "DELETE",
  "path": "/grocerylist/item/{guid}",
  "tags": [
    "GroceryList"
  ],
  "summary": "/grocerylist/item/{guid}  DELETE will delete this item assuming you own it.",
  "parameters": [
    {
      "name": "guid",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    }
  ],
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/System.Object"
    }
  }
}