BigOven · Example Payload

Grocerylist_Grocerylistitemguid

GroceryList

Grocerylist_Grocerylistitemguid is an example object payload from BigOven, with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathtagssummaryparametersrequestBodyresponse

Example Payload

Raw ↑
{
  "operationId": "GroceryList_GroceryListItemGuid",
  "method": "PUT",
  "path": "/grocerylist/item/{guid}",
  "tags": [
    "GroceryList"
  ],
  "summary": "Update a grocery item by GUID",
  "parameters": [
    {
      "name": "guid",
      "in": "path",
      "required": true,
      "description": "",
      "schema": {
        "type": "string"
      }
    }
  ],
  "requestBody": {
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/API2.Controllers.WebAPI.GroceryListController.UpdateItemByGuidRequest"
    }
  },
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/System.Object"
    }
  }
}