hemmabo_booking_status
Check the current status and retrieve full details of a booking using its reservation ID. Use this tool to verify a successful checkout or before cancelling or rescheduling a booking.
Instructions
Retrieve current status and full details of an existing booking by reservationId. Use to confirm checkout/create succeeded or before cancel/reschedule. Requires Authorization: Bearer token (MCP_API_KEY or OAuth). Read-only against the database but returns guest PII (name, email). Rate-limited per token. The only input is the reservationId returned by hemmabo_booking_checkout or hemmabo_booking_create — not the propertyId.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| reservationId | Yes | Booking or reservation UUID from hemmabo_booking_checkout or hemmabo_booking_create (e.g. '7c9e6679-7425-40de-944b-e07fc1f90ae7'). Required to look up, cancel, or reschedule the same booking record. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| error | No | Present only when isError=true. | |
| guests | No | Booked guest count. | |
| status | Yes | Host-node booking status. 'completed' is a protocol compatibility output only, not the active lifecycle truth. | |
| checkIn | No | Booked arrival date. | |
| checkOut | No | Booked departure date. | |
| currency | No | ISO 4217 currency code for the booking total. | |
| createdAt | No | Booking creation timestamp. | |
| guestName | No | Primary guest name stored on the booking. | |
| updatedAt | No | Last update timestamp for the booking record. | |
| guestEmail | No | Primary guest email stored on the booking. | |
| propertyId | No | Property UUID associated with the booking. | |
| totalPrice | No | Total amount in minor currency units. | |
| propertyName | No | Display name of the booked property. | |
| reservationId | Yes | Echoed booking or reservation UUID. | |
| propertyDomain | No | Host-owned domain associated with the property. | |
| cancellationPolicy | No | Host cancellation-policy details applicable to this booking. |