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

> Permanently remove a lead from your Famulor account via API. Deletes all associated call data, transcripts and notes for that contact record.

Permanently delete a lead from your account. This action cannot be undone.

### Path Parameters

<ParamField path="id" type="integer" required>
  The unique identifier of the lead you want to remove
</ParamField>

### Response

<ResponseField name="message" type="string">
  Confirmation message indicating successful deletion
</ResponseField>

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

  ```json 404 Not Found theme={null}
  {
    "message": "Lead not found"
  }
  ```
</ResponseExample>

### Notes

* Only leads that belong to your account can be deleted
* Deleting a lead also removes all associated secondary contacts
* This operation is permanent and cannot be reversed
* If the lead is currently being processed in a campaign, deletion may be prevented

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