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

# Desativar Recarga Automática

> Desligar a recarga automática para o ambiente

# Desativar Recarga Automática

Desativa a recarga automática. Tanto as recargas baseadas em limite mínimo quanto as agendadas deixam de ser disparadas. A configuração (limite mínimo, valor de recarga, método de pagamento) é preservada — reabilite-a posteriormente via [Atualizar Configurações de Recarga Automática](/api-reference/endpoints/update-auto-topup-settings).

## Endpoint

```
POST /api/v1/auto-topup/disable
```

## Cabeçalhos da requisição

<ParamField header="Authorization" type="string" required>
  Token Bearer para autenticação. Formato: `Bearer talq_your_environment_token_here`
</ParamField>

## Exemplos

<RequestExample>
  ```bash theme={null}
  curl -X POST "https://app.talkover.ai/api/v1/auto-topup/disable" \
    -H "Authorization: Bearer talq_your_environment_token_here"
  ```
</RequestExample>

## Resposta

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "is_enabled": false,
      "threshold_amount": 50.00,
      "recharge_amount": 100.00,
      "payment_method_id": "pm_uuid_1",
      "updated_at": "2024-01-15T13:30:00Z"
    }
  }
  ```
</ResponseExample>

## Observações

* Equivalente a chamar `PUT /v1/auto-topup/settings` com `{"is_enabled": false}`.
* Recargas em andamento (já enfileiradas) ainda podem ser concluídas — desativar não reverte cobranças pendentes.
