Delete

To delete an existing recording -> execute a DELETE request against the /recordings/:id endpoint.

The id uniquely identifies the recording.

Deletion of a recording is a destructive operation which cannot be undone.

Request

curl --request DELETE \
  --url https://api.digitalsamba.com/api/v1/recordings/c39d7c40-7ff7-4faa-b06f-698a639a9523 \
  --user YOUR_TEAM_ID:YOUR_DEVELOPER_KEY

Response (204 -> No Content)

Response is empty because the recording was deleted and there is no content to return.

Last updated