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

# Excluir anotação

> Exclui uma anotação de um contato (lead).

## Autenticação

<ParamField header="Authorization" type="string" required>
  `Bearer vg_live_<sua_chave>` — API Key com escopo `notes:write`
</ParamField>

Retorna `{ data: { id, deleted: true } }`. Rate limit: perfil de exclusão. `404` se a anotação não pertencer ao contato.

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://crm.vistum.com.br/api/v1/leads/cnt_cmnl5abc123/notes/note_2 \
    -H "Authorization: Bearer vg_live_SUA_CHAVE_AQUI"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 — OK theme={null}
  { "data": { "id": "note_2", "deleted": true } }
  ```
</ResponseExample>
