# Disable Auto-Topup

Disable automatic top-ups for your wallet.

### <mark style="color:green;">`POST`</mark> `/wallet/auto-topup/disable`

#### Required Permission

```
delete:UserAutoTopUp
```

Your API key must have this permission enabled in order to use this endpoint.

#### Example Request

```bash
curl --location --request POST 'https://<hostname>/wallet/auto-topup/disable' \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_KEY'
```

Replace `YOUR_API_KEY` with your API key.

{% hint style="info" %}
All endpoints shown in this documentation use a **sample base URL**. The production API endpoint is provided by our team upon request.
{% endhint %}

#### Response (HTTP 200)

```json
{
  "success": true,
  "autoTopupEnabled": false
}
```
