List all recording assets

Use this request to list and filter through recording assets of a workspace. The response is paginated.

This list can be filtered by room_id, session_id or status to find the relevant recording asset object.

GEThttps://api.100ms.live/v2/recording-assets
curl --location --request GET 'https://api.100ms.live/v2/recording-assets' \ --header 'Authorization: Bearer <management_token>'
RESPONSE
Status: 200 OK
{ "limit": 1, "data": [ { "id": "<asset-id>", "job_id": "<job-id>", "room_id": "<room-id>", "session_id": "<session-id>", "type": "room-vod", "path": "<storage-path>", "thumbnails": null, "metadata": { "num_layers": "4", "max_width": 1280, "max_height": 720 }, "duration": 30, "size": 364582, "status": "completed", "created_at": "2023-03-30T06:23:03.216Z" } ], "last": "<last-asset-id>" }

Query params

NameDescriptionRequired
room_idFilter assets for a particular room with its identifierNo
session_idFilter assets for a particular session with its identifierNo
statusCan be one of completed, failedNo
startSets the starting point for paginationNo
limitSets the number of objects to returned in the responseNo

Have a suggestion? Recommend changes ->

Run in postman

Was this helpful?

1234