FoodOrderCompletedWebhook
The food order completed webhook is called when the kitchen finishes preparing a meal/snack/food order.
| Details | |
|---|---|
| Type | HTTP POST request with a JSON body to your URL |
| After | Immediately after the kitchen completes cooking an order. |
| Configuration variables | None. |
| Authentication | Signature in X-Signature header: Read more |
Data Schema
{
orderNumber: number
}
The number may either be a table number if the order was placed from a table (such as "Board" or a Committee table) or an order number if the order was placed by an individual. The number will always correspond with the number at the top of the receipt the customer received.
Example POST Body
{
orderNumber: 850
}
In this example, order 850 was just completed in the kitchen. The customer with this number printed on their receipt will come to collect the order.