Reservations

Create reservation

Creates a new reservation. The department must belong to the locale.

post/reservation/{locale}

Path parameters

localeinteger required

Locale (restaurant) ID. Must match the locale bound to your API key.

Request body

department_idinteger required

Department ID (use /locale/{id}/departments to get available IDs)

datestring date required

Reservation date (YYYY-MM-DD)

timestring required

Reservation time (HH:MM)

personsinteger required
namestring
emailstring email
phonestring
messagestring
languagestring
commentstring
duration_hoursinteger
duration_minutesinteger
preferred_hall_idinteger

Example request

{
  "time": "18:00"
}

Response

Reservation created

successboolean

Example response

{
  "success": true,
  "data": {
    "time": "18:00"
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.