Order Integration
With the Order API, newly accepted orders and status updates are sent directly to your service via a webhook.
Once configured, Deliveroo will begin notifying you about order-related events via the Order Events webhook. You may also opt-in to receive events related to rider status through an additional Rider Events webhook.
Whether your site is tablet-less or tablet-based, your integration will have to follow one of the two flows described below.
To switch a site to tablet-less mode, please contact your account manager.
Webhooks?
A webhook is a mechanism that calls your HTTPS endpoint when certain event occurs. In this case, the event is the Deliveroo order or a change related to it and the HTTPS call is what informs your till about order details.
Your webhook should be an HTTPS endpoint which listens to events from Deliveroo.
Tablet-less Flow

- A customer places an order through Deliveroo's website or app.
- We send an event,
order.new
, about it via the Order Events webhook with the order's status asplaced
. - The site accepts (or rejects) this order by calling our Update Order Status endpoint.
- Via the Order Events webhook, we send you an
order.status_update
event presenting the new order status. If you have the legacy POS webhook configured and accepted the order, you'll receive another event,new_order
. - If the order is of scheduled type, you have to send another request to our Update Order Status endpoint to confirm it before the site starts to prepare it. After your call succeeds, we'll send you a notification about the status change.
- If customer wants to cancel an order then we will notify you about order's status change via Order Events webhook (
order.status_update
event) and POS (Legacy) webhook (cancel_order
event). Please see Canceled Orders for more details.
Tablet-based Flow

- A customer places an order through Deliveroo's website or app.
- The order is shown on the site's tablet. At the same time, we send an
order.new
event about it via the Order Events webhook with the order's status asplaced
. - A site staff accepts/rejects the order from the tablet.
- Via the Order Events webhook, we send you an
order.status_update
event presenting the new order status. If you have the legacy POS webhook configured and accepted the order, you'll receive another event,new_order
. - We wait for you for three minutes to send us the Sync Status request. The sync status indicates that your integration injected the order successfully into the site's in-store system.
- If the order is of scheduled type, you have to manually confirm it from the tablet before the site starts to prepare it. After your call succeeds, we'll send you a notification about the status change.
- If customer wants to cancel an order then we will notify you about order's status change via Order Events webhook (
order.status_update
event) and POS (Legacy) webhook (cancel_order
event). Please see Canceled Orders for more details.
Scope of Implementation
To use our Order API, you need to fulfill the below requirements. You don't need to support every endpoint and webhook callback, but we recommend that you do for the best experience.
Required
To be compatible with our Order API, you need to integrate the following features:
- Listen for events through an Order Events webhook endpoint in your integration. The endpoint must verify and process payloads sent to your integration, as described by tablet-less or tablet-based flows.
- Check and update Order Events webhook configuration through Get and Update.
- Accept/reject orders through Update Order Status endpoint for tablet-less restaurants.
- Send sync status through Create Sync Status for an Order endpoint for tablet-based restaurants.
Recommended
To make the most out of your Deliveroo integration, we recommend you integrate the following features:
- Listen for events through a Rider Event webhook endpoint in your integration. The endpoint must verify and process payloads sent to your integration.
- Check and update Rider Events webhook configuration through Get and Update.
- Get order details using Get Single Order Details and Get Orders endpoints.
- Inform Deliveroo how the order preparation goes through the Create Preparation Stage endpoint.
POS Webhook
The POS (Legacy) webhook (the one receiving
new_order
andcancel_order
events) is deprecated. No further development will take place for it. Please refer to the new Order Events and Rider Status webhooks.View POS API documentation here
Updated about 1 month ago