v1

latestOpenAPI 3.0.02026-07-1498671635.3 KB
Restaurant Webhooks
publicly-accessible

Order time updated

Callback to notify recipients that there has been a change to the restaurant order times for a given day and service type

post/order-time-updated

Request body

dayOfWeek'Sunday' | 'Monday' | 'Tuesday' | 'Wednesday' | 'Thursday' | 'Friday' | 'Saturday' enum

The day of the week that has been updated.

lowerBoundMinutesinteger

Order time lower bound value, in minutes.

restaurantIdstring

The Just Eat restaurant ID

serviceType'Delivery' | 'Collection' enum

Service type of the order time.

upperBoundMinutesinteger

Order time upper bound value, in minutes.

Example request

{
  "dayOfWeek": "Monday",
  "lowerBoundMinutes": 35,
  "restaurantId": "123456",
  "serviceType": "Delivery",
  "upperBoundMinutes": 50
}

Response

OK