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

# Delete Lead

> Use this endpoint to delete a lead from a list.

Use this **endpoint** to delete a lead from a list in your Reportana store. The `email` parameter is **required** and must match the email address of the lead to be removed.

## Headers

<ParamField header="Authorization" type="string" required>
  Basic base64(client\_id + ':' + client\_secret)
</ParamField>

<ParamField header="Content-Type" type="string" required>
  Content-Type:application/json
</ParamField>

## Parameters

<ParamField path="segmentId" type="string" required>
  Segmentation ID.

  Example: 1.
</ParamField>

<ParamField path="email" type="string" required>
  Lead's email.

  Example: "[johndoe@gmail.com](mailto:johndoe@gmail.com)".
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": null
  }
  ```

  ```json 4XX theme={null}
  {
    "success": false,
    "message": "List not found."
  }
  ```
</ResponseExample>
