BigOven · Example Payload

Post Grocerylist Item

GroceryList

Post Grocerylist Item 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": "post--grocerylist-item",
  "method": "POST",
  "path": "/grocerylist/item",
  "tags": [
    "GroceryList"
  ],
  "summary": "Add a single line item to the grocery list",
  "parameters": [],
  "requestBody": {
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/API2.Controllers.WebAPI.GroceryListController.PostToGroceryListRecipeRequest"
    }
  },
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/BigOven.Model.ShoppingListLine"
    }
  }
}