> For the complete documentation index, see [llms.txt](https://wiki.mobivatebulksms.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.mobivatebulksms.com/wallet-management/disable-auto-topup.md).

# 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
}
```
