Account & billing / Cancel subscription
Cancel subscription
POST/v1/subscription/cancel
Cancel the subscription. Cancellation takes effect immediately, not at the end of the billing period. Requires the billing:cancel permission.
Response fields
id
string
Prefixed identifier, e.g. sub_3ZLn….
plan_id
string
Current plan: standard, premium, or enterprise.
plan_name
string
Display name of the plan, e.g. Standard.
price
integer
Monthly price in cents (1900 = $19). 0 for enterprise.
status
string
trialing, active, past_due, canceled, or trial_expired.
trial_ends_at
timestamp | null
When the trial ends, or null when not on a trial.
trial_type
string | null
cardless (no card yet) or carded (card on file).
current_period_end
timestamp | null
When the current billing period ends.
cancel_at_period_end
boolean
Always false. Cancellation is immediate, not deferred.
flows_limit
integer
Flows allowed on this plan. -1 means unlimited.
conversions_limit
integer
Monthly conversions allowed. -1 means unlimited.
POST/v1/subscription/cancel
curl -X POST https://app.converly.io/api/v1/subscription/cancel \ -H "Authorization: Bearer sk_live_…"
200 OK
{
"id": "sub_3ZLn…",
"status": "canceled"
}