Logo
Platform updates
Calls

Delete call

Delete a specific call record

DELETE

/ user / calls / {call}

This endpoint allows you to delete a specific call record that belongs to the authenticated user.

Path Parameters

call integer required

The unique identifier of the call to delete


Response

message string

Confirmation message indicating the call was deleted successfully


Error Responses

404 Not Found

message string

Error message when the call is not found or doesn’t belong to the authenticated user



Notes

  • Only calls that belong to assistants owned by the authenticated user can be deleted
  • Once a call is deleted, it cannot be recovered
  • This action will permanently remove the call record, including any associated transcript, recording, and metadata
  • The call recording file (if exists) will also be deleted from storage
Delete call
200 Sucess Response
404 Not Found
{
  "message": "Call deleted successfully"
}