Skip to main content
GET
/
v1
/
bookings
/
{bookingId}
/
participants
Get booking info with participants
curl --request GET \
  --url https://api.letsway.com/v1/bookings/{bookingId}/participants
{
  "experience": {
    "id": "exp-123e4567-e89b-12d3-a456-426614174000",
    "title": "A Day in the Mountains",
    "location": {
      "longitude": -122.4194,
      "latitude": 37.7749,
      "name": "San Francisco",
      "additionalInfo": "Near the Golden Gate Bridge"
    }
  },
  "brand": {
    "id": "brand-123e4567-e89b-12d3-a456-426614174000",
    "name": "Awesome Brand",
    "emailAddress": "[email protected]",
    "logo": {
      "id": "uuid-value",
      "uri": {
        "original": "https://example.com/image.jpg"
      },
      "kind": "gallery"
    }
  },
  "startDateTime": "2025-03-07T15:00:00.000Z",
  "confirmationCode": "CONFIRM-123ABC",
  "participants": [
    {
      "id": "participant-123e4567-e89b-12d3-a456-426614174000",
      "firstName": "John",
      "lastName": "Doe",
      "priceTierName": "VIP",
      "qrToken": "qr-token-123abc",
      "ticketNumber": "TICKET-001",
      "cancelledAt": "2025-03-07T00:00:00.000Z"
    }
  ]
}

Path Parameters

bookingId
string

Response

200 - application/json

Get booking info with participants

experience
object
required

Experience details for the ticket

brand
object
required

Brand details associated with the ticket

startDateTime
string
required

Start date and time of the experience

Example:

"2025-03-07T15:00:00.000Z"

confirmationCode
string
required

Confirmation code for the ticket booking

Example:

"CONFIRM-123ABC"

participants
object[]
required

List of participants for the ticket