Skip to main content
DELETE
/
api
/
user
/
calls
/
{call}
Delete Call
curl --request DELETE \
  --url https://app.famulor.de/api/user/calls/{call} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Call deleted successfully"
}
This endpoint allows you to delete a specific call record that belongs to the authenticated user.

Path Parameter

call
integer
required
The unique identifier of the call to be deleted

Response

message
string
Confirmation message that the call was successfully deleted

Error Responses

message
string
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"
}