v1

latestOpenAPI 3.0.02026-07-17121287546.7 KB
Bookings / Attendees

Get a specific attendee for a booking

Retrieve a specific attendee by their ID for a booking identified by its UID.

  <Note>The cal-api-version header is required for this endpoint. Without it, the request will fail with a 404 error.</Note>
  
get/v2/bookings/{bookingUid}/attendees/{attendeeId}

Path parameters

bookingUidstring required
attendeeIdnumber required

Headers

cal-api-versionstring required

Must be set to 2024-08-13. This header is required as this endpoint does not exist in older API versions.

Authorizationstring required

value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token

Response

status'success' | 'error' required

Example response

{
  "status": "success",
  "data": {
    "name": "John Doe",
    "email": "john@example.com",
    "displayEmail": "john@example.com",
    "timeZone": "America/New_York",
    "language": "en",
    "phoneNumber": "+1234567890",
    "id": 251
  }
}