doordash · Example Payload

Doordash Menu Item Example

Leave at the front desk.

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

Top-level fields

idnamedescriptionpriceimage_urlis_activesort_idoption_groups

Example Payload

Raw ↑
{
  "id": "D-12345",
  "name": "Acme Pickup Store",
  "description": "Leave at the front desk.",
  "price": 42,
  "image_url": "https://example.com/path/abc123",
  "is_active": true,
  "sort_id": 42,
  "option_groups": [
    {
      "id": "D-12345",
      "name": "Acme Pickup Store",
      "min_selections": 0,
      "max_selections": 1,
      "options": [
        {}
      ]
    }
  ]
}