Skip to main content

Endpoint

POST https://api.ugc.inc/billing/deactivate

Overview

Deactivate an account slot. This removes the account from your subscription (no proration — you are not charged for the remaining period). The account is reclaimed and moved to the internal UGC Inc organization.

Request Body

account_id
string
required
ID of the account to deactivate

Response

data
object
curl -X POST https://api.ugc.inc/billing/deactivate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"account_id": "acc_123"}'
{
  "ok": true,
  "code": 200,
  "message": "Success",
  "data": {
    "message": "Account deactivated and billing updated",
    "account_id": "acc_123"
  }
}