v2

latestOpenAPI 3.0.32026-07-266076394.0 KB
recordings

recordings/:id

Get info about a recording

get/recordings/{recording_id}

Path parameters

recording_idstring required

Response

200

idstring

A unique, opaque ID for this object. You can use this ID in API calls, and in paginated list operations.

room_namestring

The name of the room.

start_tsinteger

When the recording started. This is a unix timestamp (seconds since the epoch).

status'finished' | 'in-progress' | 'canceled'
max_participantsinteger

The maximum number of participants that were ever in this room together during the meeting session that was recorded.

durationinteger

How many seconds long the recording is, approximately. This property is not returned for recordings that are in-progress.

share_tokenstring

Deprecated.

s3keystring

The S3 Key associated with this recording.

mtgSessionIdstring

The meeting session ID for this recording.

Example response

{
  "id": "0cb313e1-211f-4be0-833d-8c7305b19902",
  "start_ts": 1548789650,
  "status": "finished",
  "max_participants": 2,
  "duration": 277,
  "share_token": "TivXjlD22QQt",
  "s3key": "mydomain/test-recording-room/11245260397",
  "mtgSessionId": "257764e6-c74e-4c30-944a-a887a03173a3",
  "tracks": [
    {
      "size": 15620,
      "type": "audio",
      "s3key": "mydomain/test-recording-room/11245260397-audio"
    }
  ]
}