Skip to main content
Payloads here are documented from what Maple emits, but they aren’t formally schema-typed yet — new fields may be added. Validate defensively (ignore unknown fields), and treat GET /v1/orders/{orderId} as the authoritative source for an order’s current state. The live list of event types is always at GET /v1/webhook_event_types.
Every webhook is delivered in the same signed envelope; only the data differs by type. This page documents each event type. For signing, delivery, retries, and replay, see Webhooks.

Order events

Order webhooks come in two kinds, and knowing which is which is the key to using them well:
  • order.notification is the event you fulfill against. It hands you the order’s content to act on, fires once at handoff, and its delivery is treated as critical. Build your accept / deny / ready / complete loop on it.
  • order.created, order.paid, and order.cancelled are lifecycle events. Each reports one moment in the order’s life with summary data, for awareness and reconciliation. Because order.notification fires only once and never updates, these are how you learn about things that happen before or after that snapshot — most importantly a cancellation, or payment settling later.
For the order in which these fire across one order’s life, see When the webhooks fire.

Which order events should I subscribe to?

  • Fulfilling orders (a POS): order.notification and order.cancelled — receive orders, and stop when one is cancelled. Add order.validation_requested if you pre-validate.
  • Reporting or reconciliation (an OMS, dashboard, analytics): also order.created and order.paid, to mirror the order and payment lifecycle.

The order.notification payload

order.notification (and order.validation_requested) carry the order’s content in data — enough to start fulfilling, following the GET /v1/orders/{orderId} shape:
This is the order’s content, not its live state — it has no status or payment. For the authoritative current state (status, payment, per-item tax, timestamps), fetch GET /v1/orders/{orderId}. The lifecycle events carry only the summary fields listed above. scheduled_for is null for ASAP orders. When set (ISO 8601, UTC), the customer chose that pickup/delivery time — the notification still arrives immediately, so prepare the order for scheduled_for, not on receipt. delivery_address is null for pickup orders and for delivery orders without a stored address. When present, all six keys are included; notes contains the delivery instructions and unit or notes may be null.

Not a status feed

Maple does not emit a webhook for every status transition. The transitions you drive yourself (accept, ready, complete) aren’t echoed back, and there’s no event for reaching IN_DELIVERY or for payment moving to refunded / voided / failed. Read the order resource for current state — see the Order lifecycle.

Location (store) events

These track your access to a location — the connection lifecycle: See Publish a menu.

Test event

webhook.test is delivered on demand by POST /v1/webhook_subscriptions/{id}/test. Use it to verify your handler before any real traffic. It is never emitted by real activity.