Skip to content
ActionChargebeeUpdated May 2026

How do I create a Chargebee subscription?

Short answer: Drop the "ChargebeeCreate 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
Plan ID
plan_id
stringRequiredPlan ID
Customer Email
customer_email
emailRequiredThe email address. Used as the recipient or identifier depending on context.
First Name
customer_first_name
stringOptionalFirst Name
Last Name
customer_last_name
stringOptionalLast Name
Sample request
{
"plan_id": "{{trigger.plan_id}}",
"customer_email": "e.g. user@example.com",
"customer_first_name": "{{trigger.customer_first_name}}",
"customer_last_name": "{{trigger.customer_last_name}}"
}
Returns
{
"subscription": {
"id": "sub_abc123",
"status": "active",
"plan_id": "basic-monthly",
"customer_id": "cus_abc123"
}
}

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 Chargebee?
Provisions a new subscription with plan, customer, optional trial dates and addons. Useful for "B2B sales process closed → provision their subscription from the deal data" workflows.
What inputs does Create Subscription require?
Required: Plan ID, Customer Email. 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 Chargebee 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 Chargebee's rate limits automatically so you don't have to throttle manually.
More actions

Other Chargebee actions.

Send create subscription from your workflows.

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