check_booking
Look up one existing booking so the guest can confirm when and where it is. Identify it with the booking_id and manage_token that create_booking returned; both also sit in the guest's confirmation email as the manage link, /booking/?token=. Returns the business, the local date and time with its timezone, party size, service and status: confirmed, pending_confirmation, cancelled, or for past bookings completed or no_show. Never returns the guest's name, email or phone. A wrong or missing token is refused without revealing whether the booking exists.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| booking_id | Yes | The booking_id create_booking returned, or the id in the guest's manage link. | |
| manage_token | Yes | The token from the same booking's manage link. If the guest only has the link, take the token from its ?token= parameter. |