Delete Recording
Permanently delete a recording and all associated data.
DELETE
https://api.identitycall.com/api/v1/public/recordings/:idPermanently delete a recording, its transcription, and all analysis data.
Requires delete permission
This action is irreversible. The recording, transcription, dialogues, goal results, keyword detections, and pause events will all be permanently deleted.
Path Parameters
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
id | integer | Yes | - | Recording ID |
Request
cURL
curl -X DELETE "https://api.identitycall.com/api/v1/public/recordings/123" \
-H "Authorization: Bearer $IDENTITYCALL_API_KEY"Response
Returns 204 No Content on success with an empty body.
Errors
| Status | Error | Description |
|---|---|---|
| 403 | ”Delete permission required” | API key lacks delete permission |
| 404 | ”Resource not found” | Recording doesn’t exist |