Headers
Must be set to 2024-08-13. If not set to this value, the endpoint will default to an older version.
value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token
curl --request GET \
--url https://api.cal.com/v2/bookings/{bookingUid}/conferencing-sessions \
--header 'Authorization: <authorization>' \
--header 'cal-api-version: <cal-api-version>'{
"status": "success",
"data": [
{
"id": "session123",
"room": "daily-video-room-123",
"startTime": 1678901234,
"duration": 3600,
"ongoing": false,
"maxParticipants": 10,
"participants": [
{
"userId": "user123",
"userName": "John Doe",
"joinTime": 1678901234,
"duration": 3600
}
]
}
],
"error": {}
}Requires authentication and proper authorization. Access is granted if you are the booking organizer, team admin or org admin/owner.
2024-08-13 is required in the request header.curl --request GET \
--url https://api.cal.com/v2/bookings/{bookingUid}/conferencing-sessions \
--header 'Authorization: <authorization>' \
--header 'cal-api-version: <cal-api-version>'{
"status": "success",
"data": [
{
"id": "session123",
"room": "daily-video-room-123",
"startTime": 1678901234,
"duration": 3600,
"ongoing": false,
"maxParticipants": 10,
"participants": [
{
"userId": "user123",
"userName": "John Doe",
"joinTime": 1678901234,
"duration": 3600
}
]
}
],
"error": {}
}Must be set to 2024-08-13. If not set to this value, the endpoint will default to an older version.
value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token
Was this page helpful?