v1

latestOpenAPI 3.0.02026-07-17121287546.7 KB
Bookings

Get Video Meeting Sessions. Only supported for Cal Video

Requires authentication and proper authorization. Access is granted if you are the booking organizer, team admin or org admin/owner.

<Note>cal-api-version: `2024-08-13` is required in the request header.</Note>
get/v2/bookings/{bookingUid}/conferencing-sessions

Path parameters

bookingUidstring required

Headers

cal-api-versionstring required

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

Authorizationstring required

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

Response

status'success' | 'error' required
errorobject

Example response

{
  "status": "success",
  "data": [
    {
      "id": "session123",
      "room": "daily-video-room-123",
      "startTime": 1678901234,
      "duration": 3600,
      "maxParticipants": 10,
      "participants": [
        {
          "userId": "user123",
          "userName": "John Doe",
          "joinTime": 1678901234,
          "duration": 3600
        }
      ]
    }
  ]
}