Find a Reservation

Get reservation details using your ID

Find a Reservation by PMS ID

GET [environmentBaseurl]/v1/reservations/find

This endpoint allows you to find a reservation using the ID of the reservation in the third-party app (PMS).

Query Parameters

NameTypeDescription

pmsId

string

ID of reservation in your system.

extend

string

Currently, the only option is "pin" and by setting it, if the reservation has PIN (to access to the room) you will get it in the response.

{
  "data": {
    ...ReservationDocument, // Check ReservationDocument page for the sample data
    "pin": "83736123"
  }
}

Last updated