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

# Delete call

> Permanently delete a call record and its associated data.

Permanently deletes a call record belonging to the authenticated user. This includes the transcript, recording, and all associated metadata.

## Endpoint

`DELETE /user/calls/{call}`

## Path parameters

<ParamField path="call" type="integer" required>
  Unique identifier of the call to delete.
</ParamField>

## Response

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

## Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE "https://portal.intellixent.ai/api/user/calls/123" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript Node.js theme={null}
  const response = await fetch('https://portal.intellixent.ai/api/user/calls/123', {
    method: 'DELETE',
    headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
  });

  const data = await response.json();
  console.log(data.message);
  ```
</CodeGroup>

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

```json 404 Not found theme={null}
{
  "message": "Call not found"
}
```

<Warning>
  Deletion is permanent. The call record, transcript, and recording file are all removed and cannot be recovered.
</Warning>
