Subscriptions
Cancel a Subscription
Subscriptions
Cancel a Subscription
POST
/
api
/
v1
/
subscriptions
/
{id}
/
cancel
curl --request POST \
--url https://app.flowglad.com/api/v1/subscriptions/{id}/cancel \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"cancellation": {
"timing": "at_end_of_current_billing_period"
}
}'
{
"subscription": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"customerId": "<string>",
"organizationId": "<string>",
"status": "trialing",
"defaultPaymentMethodId": "<string>",
"backupPaymentMethodId": "<string>",
"trialEnd": "2023-11-07T05:31:56Z",
"currentBillingPeriodStart": "2023-11-07T05:31:56Z",
"currentBillingPeriodEnd": "2023-11-07T05:31:56Z",
"metadata": {},
"canceledAt": "2023-11-07T05:31:56Z",
"cancelScheduledAt": "2023-11-07T05:31:56Z",
"priceId": "<string>",
"runBillingAtPeriodStart": true,
"interval": "day",
"intervalCount": 123,
"billingCycleAnchorDate": "2023-11-07T05:31:56Z",
"name": "<string>",
"current": true
}
}
Authorizations
Path Parameters
Body
application/json
Response
200
application/json
Successful response
Available options:
trialing
, active
, past_due
, unpaid
, cancellation_scheduled
, incomplete
, incomplete_expired
, canceled
, paused
Available options:
day
, week
, month
, year
safeZodPositiveInteger
Whether the subscription is current (statuses "active", "trialing", "past_due", or "cancellation_scheduled")
curl --request POST \
--url https://app.flowglad.com/api/v1/subscriptions/{id}/cancel \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"cancellation": {
"timing": "at_end_of_current_billing_period"
}
}'
{
"subscription": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"livemode": true,
"customerId": "<string>",
"organizationId": "<string>",
"status": "trialing",
"defaultPaymentMethodId": "<string>",
"backupPaymentMethodId": "<string>",
"trialEnd": "2023-11-07T05:31:56Z",
"currentBillingPeriodStart": "2023-11-07T05:31:56Z",
"currentBillingPeriodEnd": "2023-11-07T05:31:56Z",
"metadata": {},
"canceledAt": "2023-11-07T05:31:56Z",
"cancelScheduledAt": "2023-11-07T05:31:56Z",
"priceId": "<string>",
"runBillingAtPeriodStart": true,
"interval": "day",
"intervalCount": 123,
"billingCycleAnchorDate": "2023-11-07T05:31:56Z",
"name": "<string>",
"current": true
}
}