curl --request GET \
--url https://api.cal.com/v2/bookings/{bookingUid}/attendees/{attendeeId} \
--header 'Authorization: <authorization>' \
--header 'cal-api-version: <cal-api-version>'{
"status": "success",
"data": {
"name": "John Doe",
"email": "[email protected]",
"displayEmail": "[email protected]",
"timeZone": "America/New_York",
"absent": false,
"id": 251,
"language": "en",
"phoneNumber": "+1234567890"
}
}Retrieve a specific attendee by their ID for a booking identified by its UID.
curl --request GET \
--url https://api.cal.com/v2/bookings/{bookingUid}/attendees/{attendeeId} \
--header 'Authorization: <authorization>' \
--header 'cal-api-version: <cal-api-version>'{
"status": "success",
"data": {
"name": "John Doe",
"email": "[email protected]",
"displayEmail": "[email protected]",
"timeZone": "America/New_York",
"absent": false,
"id": 251,
"language": "en",
"phoneNumber": "+1234567890"
}
}Must be set to 2024-08-13. This header is required as this endpoint does not exist in older API versions.
value must be Bearer <token> where <token> is api key prefixed with cal_, managed user access token, or OAuth access token
Was this page helpful?