Skip to main content

Order Status Updates

Send order status updates to Gett when orders progress through your system.

Data Flow

Update Order Status

POST /orders/{orderId}/status
{
"status": "confirmed",
"estimatedReadyAt": "2026-01-13T13:30:00Z"
}
FieldTypeRequiredDescription
statusstringSee status values below
estimatedReadyAtdatetimeExpected ready time
cancelReasonstringRequired if cancelling

Order Status Values

StatusWhen to Send
confirmedOrder accepted into your system
preparingKitchen has started making the order
readyOrder is ready for pickup
picked_upCourier has collected the order
completedOrder successfully delivered
cancelledOrder cannot be fulfilled

Cancellation

If you need to cancel an order:

{
"status": "cancelled",
"cancelReason": "Item out of stock"
}