curl --request GET \
--url https://api.cal.com/v2/bookings/{bookingUid}/calendar-links \
--header 'Authorization: <authorization>' \
--header 'cal-api-version: <cal-api-version>'
{
"status": "success",
"data": [
{
"label": "<string>",
"link": "<string>"
}
]
}
Retrieve calendar links for a booking that can be used to add the event to various calendar services. Returns links for Google Calendar, Microsoft Office, Microsoft Outlook, and a downloadable ICS file.
curl --request GET \
--url https://api.cal.com/v2/bookings/{bookingUid}/calendar-links \
--header 'Authorization: <authorization>' \
--header 'cal-api-version: <cal-api-version>'
{
"status": "success",
"data": [
{
"label": "<string>",
"link": "<string>"
}
]
}
Must be set to 2024-08-13
value must be Bearer <token>
where <token>
is api key prefixed with cal_ or managed user access token
The response is of type object
.
Was this page helpful?