Skip to main content

DELETE : API to Delete a Recording


Delete
https://<appname>.metered.live/api/v1/recording/:recordingId

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

<recordingId:> - replace it with the name of the recordingId which you want to delete.

Description

This endpoint allows you to delete the recording

Parameters

ParametersDescriptionRequiredOptions
Query
secretKeystringyour secret keyyes-
recordingIdstringrecordingIdyes-

Request Samples

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

Responses

200
{
"success": true,
"recordingId": "61ddfef334525d9943ca010ec3",
"message": "recording deleted successfully"
}
400

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