Skip to content
ActionStripeUpdated May 2026

How do I create a Stripe subscription?

Short answer: Drop the "StripeCreate 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
Customer ID
customer
stringRequiredThe Stripe customer ID (must have a payment method attached)
Price ID
price
stringRequiredStripe Price ID — starts with 'price_'.
Trial Period (days)
trial_period_days
stringOptionalNumber of trial days before charging. Leave empty for no trial.
Cancel at Period End
cancel_at_period_end
optionsOptionalWhether to cancel the subscription at the end of the current billing period
Sample request
{
"customer": "cus_abc123",
"price": "price_abc123",
"trial_period_days": "e.g. 14",
"cancel_at_period_end": "{{trigger.cancel_at_period_end}}"
}
Returns
{
"id": "sub_abc123",
"items": {
"data": [
{
"id": "si_abc",
"price": {
"id": "price_abc123",
"currency": "usd",
"unit_amount": 1999
}
}
]
},
"object": "subscription",
"status": "active",
"customer": "cus_abc123",
"current_period_end": 1702592000,
"current_period_start": 1700000000
}

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

Triggered by

Apps that pair well as the trigger for Create Subscription.

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

FAQ

Questions about Create Subscription.

What does the Create Subscription action do in Stripe?
Creates a recurring subscription for a customer against one or more prices, with optional trial period, coupon, and metadata. Standard for converting a signed-up customer into recurring MRR.
What inputs does Create Subscription require?
Required: Customer ID, Price 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 Create Subscription support batch operations?
Yes. Run Create 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 create subscription from your workflows.

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