Skribby
API Reference

Delete Recording Data

DELETE/recording/{id}
https://platform.skribby.io/api/v1/recording/{id}

Delete all data related to the recording, including transcription and recording. Be aware, this action is not reversible!

Path Parameters

NameTypeDescription
idrequired
string<uuid>Recording ID

Responses

messagestring
Example: "Recording deleted successfully."

Request

curl -X DELETE \
  "https://platform.skribby.io/api/v1/recording/{id}" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response

200 OKapplication/json
{
  "message": "Recording deleted successfully."
}