BigOven · Example Payload

Grocerylist_Post

GroceryList

Grocerylist_Post 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_Post",
  "method": "POST",
  "path": "/grocerylist/line",
  "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.PostGroceryListAddLineRequest"
    }
  },
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/BigOven.Model.ShoppingListLine"
    }
  }
}