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.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.notificationis 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, andorder.cancelledare lifecycle events. Each reports one moment in the order’s life with summary data, for awareness and reconciliation. Becauseorder.notificationfires 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.
Which order events should I subscribe to?
- Fulfilling orders (a POS):
order.notificationandorder.cancelled— receive orders, and stop when one is cancelled. Addorder.validation_requestedif you pre-validate. - Reporting or reconciliation (an OMS, dashboard, analytics): also
order.createdandorder.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:
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:Menu events
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.