BigOven · Example Payload

Grocerylist_Department

GroceryList

Grocerylist_Department 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_Department",
  "method": "POST",
  "path": "/grocerylist/department",
  "tags": [
    "GroceryList"
  ],
  "summary": "Departmentalize a list of strings -- used for ad-hoc grocery list item addition",
  "parameters": [],
  "requestBody": {
    "contentType": "application/json",
    "schema": {
      "$ref": "#/components/schemas/API2.Controllers.WebAPI.GroceryListController.DepartmentModel"
    }
  },
  "response": {
    "status": 200,
    "contentType": "application/json",
    "schema": {
      "items": {
        "$ref": "#/components/schemas/API2.GroceryListDepartmentResult"
      },
      "type": "array"
    }
  }
}