Check availability

In order to create a reservation, first the restaurant must have available tables for the date, time and number of guests provided. Availability can be checked using the following endpoints:

  • Availabilities for a merchant:
    • GET /v1/merchants/{merchantId}/availabilities
    • GET /v1/merchants/{merchantId}/availabilities/{date}/times
  • List of merchants based on availability:
    • GET /v1/merchants, searching after place, date, fromTime and capacity parameters

A reservation can be created using Public API by making a request to PUT /v1/reservations endpoint.

A reservation can be edited using Public API by making a request to PATCH /v1/reservations endpoint. The details that can be edited are reservation’s status, number of guests, date and/or time of the reservation.