Skip to main content

GET : API to Get all the recordings


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

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

Description

This endpoint allows you to GET all the recordings

Parameters

ParametersDescriptionRequiredOptions
Query
secretKeystringyour secret keyyes-

Request Samples

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

Responses

200
{
"currEndId": "61d4c3a12a864c81ed7feab9",
"total": 139,
"limit": 50,
"data": [{
"_id": "619051518ce4fa3ba72d8646",
"app": "615c56b84eb9fab97ea18c75",
"room": "619048e51e9a8c3a99ab0231",
"participantSession": "61905130b3a78a3b1a4e5f97",
"meetingSession": "619050fdb3a78a3b1a4e5f95",
"participantUsername": "asdfas",
"fileName": "daf1a815-7c80-4423-b7b0-3c757a23302a.webm",
"sizeInBytes": 4526446,
"type": "video",
"startTime": 1636847920,
"endTime": 1636847953
}, {
"_id": "61905153b3a78a3b1a4e5f98",
"app": "615c56b84eb9fab97ea18c75",
"room": "619048e51e9a8c3a99ab0231",
"participantSession": "619051198ce4fa3ba72d8645",
"meetingSession": "619050fdb3a78a3b1a4e5f95",
"participantUsername": "asdfas",
"fileName": "2fbc0af1-4fae-48d8-8c74-3abbbd850cd0.webm",
"sizeInBytes": 11268752,
"type": "video",
"startTime": 1636847898,
"endTime": 1636847955
}]
}
400

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