> ## Documentation Index
> Fetch the complete documentation index at: https://docs.famulor.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Call

> Delete a specific call record from the Famulor system via API. Permanently removes transcripts, recordings and metadata for that voice agent call.

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

### Path Parameter

<ParamField path="call" type="integer" required>
  The unique identifier of the call to be deleted
</ParamField>

### Response

<ResponseField name="message" type="string">
  Confirmation message that the call was successfully deleted
</ResponseField>

### Error Responses

<ResponseField name="message" type="string">
  Error message if the call was not found or does not belong to the authenticated user
</ResponseField>

### 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

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "message": "Call deleted successfully"
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "message": "Call not found or does not belong to the authenticated user"
  }
  ```
</ResponseExample>

<Tip>
  Related pages: [Introduction](/en/api-reference/introduction) and [Authentication Guide](/en/developers/authentication-guide), and [API Integration Examples](/en/developers/api-integration-examples).
</Tip>
