Skip to main content
POST
/
api
/
v1
/
auto-topup
/
disable
curl -X POST "https://app.talkover.ai/api/v1/auto-topup/disable" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "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"
  }
}

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.

Disable Auto Topup

Disable auto topup. Both threshold-based and scheduled recharges stop firing. Configuration (threshold, recharge amount, payment method) is preserved — re-enable later via Update Auto Topup Settings.

Endpoint

POST /api/v1/auto-topup/disable

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here

Examples

curl -X POST "https://app.talkover.ai/api/v1/auto-topup/disable" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "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"
  }
}

Notes

  • Equivalent to calling PUT /v1/auto-topup/settings with {"is_enabled": false}.
  • In-flight recharges (already queued) may still complete — disable does not roll back pending charges.