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

> Exclui uma tarefa do workspace.

## Autenticação

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

Retorna `{ data: { id, deleted: true } }`. Rate limit: perfil de exclusão.

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

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