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

# Excluir Lead

> Utilize este endpoint para excluir um lead em uma lista.

Utilize este **endpoint** para excluir um lead de uma lista em sua loja Reportana. O parâmetro `email` é **obrigatório** e deve corresponder ao endereço de e-mail do lead a ser removido.

## 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>
  ID da segmentação.

  Exemplo: 1.
</ParamField>

<ParamField path="email" type="string" required>
  Email do lead.

  Exemplo: "[joaomoraes@gmail.com](mailto:joaomoraes@gmail.com)".
</ParamField>

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

  ```json 4XX theme={null}
  {
    "success": false,
    "message": "Lista não encontrada."
  }
  ```
</ResponseExample>
