This endpoint allows you to delete a specific call record that belongs to the authenticated user.
Path Parameter
The unique identifier of the call to be deleted
Response
Confirmation message that the call was successfully deleted
Error Responses
Error message if the call was not found or does not belong to the authenticated user
Notes
- Only calls belonging to assistants associated with the authenticated user can be deleted
- Once a call is deleted, it cannot be restored
- This action permanently removes the call record, including all associated transcripts, recordings, and metadata
- The call recording file (if any) will also be deleted from storage
curl -X DELETE "https://app.famulor.de/api/user/calls/480336" \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"message": "Call deleted successfully"
}