Skip to main content

GET : API to Get all recordings for a Participant Session


GET
https://<appname>.metered.live/api/v1/recordings/participantsession/:participantSessionId:

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

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

Description

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

Parameters

ParametersDescriptionRequiredOptions
Query
secretKeystringyour secret keyyes-
participantSessionIdstringparticipantSessionIdyes-

Request Samples

cURL
curl --request GET \
--url 'https://appname.metered.live/api/v1/recordings/participantsession/:participantSessionId?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"
}