Deliveroo · JSON Structure

Webhooks Order Event Payload Structure

OrderEventPayload schema from Deliveroo webhooks

Type: object Properties: 2
Food DeliveryGroceryMarketplaceLogisticsRestaurants

OrderEventPayload is a JSON Structure definition published by Deliveroo, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

event body

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-structure/webhooks-order-event-payload-structure.json",
  "name": "OrderEventPayload",
  "description": "OrderEventPayload schema from Deliveroo webhooks",
  "type": "object",
  "properties": {
    "event": {
      "type": "string",
      "enum": [
        "order.new",
        "order.status_update"
      ],
      "description": "The order event type.",
      "example": "order.new"
    },
    "body": {
      "type": "object",
      "description": "The Order Event Body object containing the event details."
    }
  }
}