Skip to main content
GET
/
v2
/
bookings
/
{bookingUid}
/
conferencing-sessions
Get Video Meeting Sessions. Only supported for Cal Video
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": {}
}

Headers

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

Must be set to 2024-08-13. If not set to this value, the endpoint will default to an older version.

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

Response

200 - application/json
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object[]
required
error
object