GET
/
v2
/
bookings
/
{bookingUid}
/
references
curl --request GET \
  --url https://api.cal.com/v2/bookings/{bookingUid}/references \
  --header 'Authorization: <authorization>' \
  --header 'cal-api-version: <cal-api-version>'
{
  "status": "success",
  "data": [
    {
      "type": "<string>",
      "eventUid": "<string>",
      "destinationCalendarId": "<string>",
      "id": 123
    }
  ]
}

Headers

cal-api-version
string
default:2024-08-13
required

Must be set to 2024-08-13

Authorization
string
required

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

Path Parameters

bookingUid
string
required

Query Parameters

type
enum<string>

Filter booking references by type

Available options:
google_calendar,
office365_calendar,
daily_video,
google_video,
office365_video,
zoom_video

Response

200 - application/json

The response is of type object.