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

# Encerrar Chamada

> Encerra uma chamada de voz em andamento pelo WhatsApp Business.

<Note>
  Requer token de instância associado ao número de telefone. O número é resolvido automaticamente pelo token — não é necessário informar o `phone-number-id`.
</Note>

## Parâmetros

### Body

<ParamField body="call_id" type="string" required>
  Identificador único da chamada (retornado no `connect` ou `accept`). Exemplo: `"wacid.ABGGFjFVU2AfAgo6V"`.
</ParamField>

## Exemplo de Requisição

```bash theme={null}
curl --request POST \
  --url https://apis.vectalk.com.br/api/calls/terminate \
  --header 'Authorization: Bearer {seu_token}' \
  --header 'Content-Type: application/json' \
  --data '{
    "call_id": "wacid.ABGGFjFVU2AfAgo6V"
  }'
```

## Resposta

```json theme={null}
{
  "success": true
}
```

<Note>
  Os campos `messaging_product: "whatsapp"` e `action: "terminate"` são adicionados automaticamente pelo proxy — não é necessário enviá-los.
</Note>
