Skip to main content

GET : API to Get all recordings for a Meeting Session


GET
https://<appname>.metered.live/api/v1/recordings/meetingsession/:meetingSessionId:

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

<meetingSessionId:> - replace it with the name of the meeting session for which you want the recordings

Description

This endpoint allows you to GET all the recordings for a meeting session

Parameters

ParametersDescriptionRequiredOptions
Query
secretKeystringyour secret keyyes-
meetingSessionIdstringmeetingSessionIdyes-

Request Samples

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

Responses

200
{
"currEndId": null,
"total": 0,
"limit": 50,
"data": []
}
400

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