List
To list the existing recordings -> execute a GET request against the /recordings endpoint.
Note that archived recordings are not listed in this endpoint. If you want to explicitly see archived recordings use the GET /recordings/archived endpoint instead.
Use the room_id or session_id arguments if you want to filter recordings based on a concrete room or a concrete session.
https://api.digitalsamba.com/api/v1/recordings?room_id=7f8c8eac-6643-47db-8d93-e7633e6e53ec
https://api.digitalsamba.com/api/v1/recordings?session_id=16e44502-dae5-41f9-b095-e41bf6ac2d1d
Since potentially there could be thousands of recordings, pagination is supported with limit, order and after arguments. Read about pagination to learn the details of it. By default maximum 100 recordings will be returned in the response.
If you want to retrieve the details of one concrete recording, then execute a GET request against the /recordings/:id endpoint
Duration of the recording is listed in seconds. Also there are details provided about the participant who initiated the recording and the room/session where the recording happened.
Request (listing all recordings)
Response (200 OK)
The total_count is the total amount of recordings you have globally. It is NOT the amount of recordings in the current page returned in the data array. In the above example you have 148 recordings in total, but in the data array there will be maximum 100 recordings (the default limit argument value).
Request (get information about a concrete recording)
Response (200 OK)
Last updated