/
Menu Management - API Reference

Menu Management - API Reference

This page lists each endpoint and webhook referenced in the API actions page with a link to our technical documentation and any technical details about the request parameters and body.

Store Menu

Menu Event Webhook

  • Webhook type: MENU_UPDATED

  • Menu Event webhook documented here

Store Menu Version Webhook

  • Webhook type: MENU_PRICES_AVAILABILITY_UPDATE

  • Store Menu Version Webhook documented here

This Webhook Event will contain the following message body:

{ "brand": "BK", "data": { "created": [], "updated": [], "deleted": [] }, "region": "NZ", "serviceMode": "pickup", "storeId": "1234", "version": 20231026212510630, "eventTime": "2023-03-28T22:41:03.279Z", "eventType": "MENU_PRICES_AVAILABILITY_UPDATE" }

There are two fields that require a deeper explanation here: version and eventTime.The version is a ISO 8601 UTC Date Time without the digits. So on our example the version 20231026212510630 equates the ISO Date Time 2023-10-26T21:25:10.630Z. For example, if you create PLU 501 at 2023-10-26T21:25:10.630Z ISO Date, the current menu version received in this webhook will be 20231026212510630. If another PLU is then updated, a new webhook event will be generated and a new version will be attached to the menu.

The eventTime is a ISO Date which refers to the moment the webhook event was generated. It is not related in any way to the menu versioning. The arrays within the data object will contain objects relative to the created, updated or deleted in this specific version. Here’s a sample of what one of these objects look like:

{ "availability": true, "channel": "whitelabel", "country": "US", "endDate": 1673872934, "hours": [ { "start": "1700", "end": "2100" } ], "plu": "string", "price": 500, "priority": 1, "repetition": [ "Mo", "Fr" ], "startDate": 1673872934, "serviceMode": "delivery", "storeId": "641234", "version": 20231026212510630 }

 Webhook Instructions

To see how it works, here is the step-by-step:

  1. Create or update by making a PUT call on the following Partners-API endpoint /api/v1/stores/{storeId}/menu/plus. For the sake of our example, let’s use the following payload:

    { "plus": [ { "plu": "502", "prices": [ { "price": { "currency": "USD", "amount": 100 }, "channel": "WHITELABEL_IN_STORE" } ] } ] }
  2. This will asynchronously trigger a few internal processes that will generate the following MENU_PRICES_AVAILABILITY_UPDATE webhook event. This also generates a StoreMenuVersion

    record in our database, which will be kept for 7 days.

Endpoints

  • GET Store Menu PLUsendpoint documented here

  • GET Store Menu Diffendpoint documented here

  • Update (PUT) Store Menu PLUsendpoint documented here

Brand Menu

Webhook

  • Webhook type: MENU_CONTENT_UPDATED

  • Menu Content Updated webhook documented here

Endpoint

  • GET Brand Menu endpoint documented here

 

 

Related content

Menu Management - API Actions
Menu Management - API Actions
Read with this
Using the MENU_CONTENT_UPDATED Webhook
Using the MENU_CONTENT_UPDATED Webhook
More like this
Checkout - API actions
Checkout - API actions
Read with this
Checkout - API Reference
Checkout - API Reference
Read with this
POS Orders
Read with this
Menu Management - Overview
Menu Management - Overview
Read with this