v1

latestOpenAPI 3.0.32026-07-2632131.4 MB
Reservations Open Api [Beta]

Update Reservation Travel Information

Update travel information for a reservation, including transportation details, reason for visit, and whether it was booked on behalf of someone else

put/reservations-v3/{reservationId}/travel-information

Path parameters

reservationIdstring required
Example:5f92cbf10cf217478ba93561

The Guesty reservation ID

Request body

reasonForVisit'business' | 'leisure' | 'family' | 'event' | 'other'

Reason for the guest visit

agentBookingboolean

Whether the reservation was made by an agent

Example request

{
  "transportation": {
    "flight": true,
    "flightNumber": "AB-12345"
  },
  "reasonForVisit": "business"
}

Response

Success

reservationIdstring required
reasonForVisit'business' | 'leisure' | 'family' | 'event' | 'other'
agentBookingboolean

Example response

{
  "transportation": {
    "flight": true,
    "flightNumber": "AB-12345"
  }
}