Skip to main content
PUT
/
api
/
organizations
/
{organizationId}
/
plan
Update organization SMS plan (SuperAdmin only)
curl --request PUT \
  --url https://your-instance.example.com/api/organizations/{organizationId}/plan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "plan": "fasttrack"
}
'
{
  "success": true,
  "plan": "fasttrack"
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

organizationId
string
required

Body

application/json
plan
enum<string>
required

Subscription plan tier assigned to the organization; gates feature access and quotas.

Available options:
skip,
essentials,
fasttrack,
partner,
unlimited

Response

Plan updated

success
enum<boolean>
Available options:
true
plan
enum<string>
Available options:
skip,
essentials,
fasttrack,
partner,
unlimited