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

# Delete Lead

> Permanently delete a lead

## Endpoint

<Card>
  <strong>DELETE</strong> `/backend/leads/{id}`
</Card>

## Path Parameters

<ParamField path="id" type="string" required>
  Lead ID to delete
</ParamField>

## Request Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.leavo.ai/backend/leads/lead-uuid" \
    -H "Authorization: Bearer your_api_key_here"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.leavo.ai/backend/leads/lead-uuid', {
    method: 'DELETE',
    headers: {
      'Authorization': 'Bearer your_api_key_here'
    }
  });
  ```
</CodeGroup>

## Response

```
HTTP 204 No Content
```

<Warning>
  This action is irreversible. All data associated with the lead will be permanently deleted.
</Warning>
