Skip to main content

GET : API to Get all Meeting presence


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

<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 Meeting Presence

Parameters

ParametersDescriptionRequiredOptions
Query
secretKeystringyour secret keyyes-
roomNamestringname of the room for which you want to fetch meeting sessionsyes-

Request Samples

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

Responses

200
[{
"_id": "6104093bb01b5311ee818280",
"app": "6071e1de0a0218674134a24e",
"room": {
"_id": "60eef8020e3b10094cf4c9de",
"privacy": "public",
"deleteOnExp": false,
"autoJoin": false,
"enableKnocking": false,
"enableChat": true,
"enableScreenSharing": true,
"joinVideoOn": true,
"joinAudioOn": true,
"ownerOnlyBroadcast": false,
"enableRecording": false,
"ejectAtRoomExp": true,
"ejectAfterElapsedTimeInSec": 0,
"lang": "en",
"archived": false,
"roomName": "eject-test",
"app": "6071e1de0a0218674134a24e",
"created": "2021-07-14T14:43:14.578Z",
"expireUnixSec": null,
"notBeforeUnixSec": null
},
"startTime": 1627654459,
"state": "active"
}]

400
{
"message": "Invalid request"
}