Orders
List the guests on an order
Retrieve every guest attached to an order. The lead booker is the guest with is_lead_booker set to true — there is at most one lead booker per order.
get/shop/orders/{orderId}/guests
Response
The guests on the order were successfully retrieved.
Example response
{
"data": [
{
"id": "5dcb47800000000000000000",
"checked_in_at": "2025-10-01T12:00:00+00:00",
"checked_out_at": "2025-10-01T16:30:00+00:00",
"customer_id": "5f8a1b2c-9d3e-4a5b-8c6d-7e8f9a0b1c2d",
"email": "jane.doe@example.com",
"first_name": "Jane",
"intake_form_submission_id": "5dcb47800000000000000010",
"last_name": "Doe",
"name": "Jane Doe"
}
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.