Retrieve a specific room

Retrieves the details of a specific room. 100ms provides options to retrieve details of a room with their ID or name.

GEThttps://api.100ms.live/v2/rooms/<room_id>
curl --location --request GET 'https://api.100ms.live/v2/rooms/<room_id>' \ --header 'Authorization: Bearer <management_token>'
RESPONSE
Status: 200 OK
{ "id": "631a05390e6ffae22efa610b", "name": "sampleroom", "enabled": true, "description": "This is sample description for room", "customer_id": "627cdddff2e4e30487862ad1", "recording_source_template": false, "recording_info": { "enabled": true, "upload_info": { "type": "s3", "location": "brytecam-test-bucket-ap-south-1", "prefix": "dev/627cdddff2e4e30487862ad1" } }, "template_id": "63188115d11d6db790c73c60", "template": "new-template-1662550293", "region": "in", "created_at": "2022-09-08T15:07:37.83Z", "updated_at": "2022-09-08T15:07:37.83Z" }

Arguments

NameTypeDescriptionRequired
room_idstringUnique identifier of the room you wish to fetch details for (example: 627cda81ab4f3b56a077dc33)Yes

Have a suggestion? Recommend changes ->

Run in postman

Was this helpful?

1234