Skip to content
ActionStripeUpdated May 2026

How do I update a Stripe subscription (change plan, quantity)?

Short answer: Drop the "StripeUpdate Subscription" action anywhere in your workflow, map the inputs from upstream nodes, and publish.

Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Subscription ID
subscription_id
stringRequiredSubscription ID. e.g. "sub_abc123"
New Price ID
price_id
stringOptionalSwitch the subscription to a new price/plan
Quantity
quantity
stringOptionalNumber of seats/units
Proration Behavior
proration_behavior
optionsOptionalProration Behavior. Options: Create prorations, None, Always invoice
Cancel at Period End
cancel_at_period_end
optionsOptionalCancel at Period End. Options: Yes, No
Sample request
{
"subscription_id": "sub_abc123",
"price_id": "price_abc123",
"quantity": "e.g. 5",
"proration_behavior": "{{trigger.proration_behavior}}",
"cancel_at_period_end": "{{trigger.cancel_at_period_end}}"
}
Returns
{
"id": "sub_abc123",
"items": {
"data": [
{
"price": {
"id": "price_abc123",
"unit_amount": 2999
}
}
]
},
"object": "subscription",
"status": "active",
"customer": "cus_abc",
"current_period_end": 1702592000
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for Update Subscription.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about Update Subscription.

What does the Update Subscription action do in Stripe?
Updates an existing Stripe subscription: change plan, quantity, billing cycle, trial, or metadata. Pass proration_behavior to control proration on changes.
What inputs does Update Subscription require?
Required: Subscription ID. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Stripe returns an error?
The workflow pauses on the failed node, the error message is captured in the run log, and you can retry the run with one click. Auto-retry policies are configurable per workflow with exponential backoff up to 5 attempts.
Does Update Subscription support batch operations?
Yes. Run Update Subscription inside a Loop node to process arrays. Tiny Command handles Stripe's rate limits automatically so you don't have to throttle manually.
More actions

Other Stripe actions.

Send update subscription from your workflows.

Triggered by anything in the catalog. Free tier available. No credit card.