Skip to main content

GET : API to Get a Meeting Room


GET
    https://<appname>.metered.live/api/v1/room/{roomName}

<appname> - replace it the name of your app.

<roomName> - The name of the room that you want to Get.

Description

This endpoint allows you to GET a Meeting Room

Parameters

ParametersDescriptionRequiredOptions
Query
secretKeystringyour secret keyyes-
roomNamestringname of the room you want to fetchyes-

Request Samples

cURL
curl --request GET \
--url 'https://appname.metered.live/api/v1/room/roomName?secretKey={replace_this_with_your_secretKey}' \
--header 'Accept: application/json'

Responses

200
 {
"privacy": "public",
"deleteOnExp": false,
"autoJoin": false,
"enableRequestToJoin": false,
"enableChat": false,
"enableScreenSharing": true,
"joinVideoOn": true,
"joinAudioOn": true,
"ownerOnlyBroadcast": false,
"enableRecording": false,
"ejectAtRoomExp": false,
"lang": "en",
"archived": false,
"_id": "61005784c3c9104421af1534",
"roomName": "6kpYYvYj75",
"app": "61005767f41008463845bac0",
"created": "2021-07-27T18:59:16.448Z",
"__v": 0
}
400

{
"success": false,
"message": "Invalid request"
}