curl --request GET \
--url https://api.cal.com/v2/bookings/{bookingUid}/transcripts \
--header 'cal-api-version: <cal-api-version>'
{
"status": "success",
"data": [
"https://transcript1.com",
"https://transcript2.com"
],
"error": {}
}
Fetches all the transcripts download links for the booking :bookingUid
curl --request GET \
--url https://api.cal.com/v2/bookings/{bookingUid}/transcripts \
--header 'cal-api-version: <cal-api-version>'
{
"status": "success",
"data": [
"https://transcript1.com",
"https://transcript2.com"
],
"error": {}
}
Must be set to 2024-08-13
The response is of type object
.
Was this page helpful?