Pricing Page Configs
Pricing Page Configuration Options
Available Configs
email
Type
Required
Description
String
No
The customer's email address. Pass this in so customers do not need to enter in their email on signup.
service
Type
Required
Description
String
No
The Billflow service. Use this to dynamically pass in different service to the billing page.
customer_id
Type
Required
Description
String
No
The customer's Stripe Customer ID. Pass this in to checkout an existing customer. You must have already created the Stripe Customer object to use this.
handleResponse
Type
Required
Description
Function
No
options.disableTiers
Type
Required
Description
Array
No
Use to dynamically disable certain tiers for a customer when selecting a plan. Add an array of tiers (corresponds to metadata tag sb_tier) to disable users from being able to change to those specific plans.
Eg: ['Tier 1', 'Tier 2']
options.quantity
Type
Required
Description
Object
No
Use to set the quantity of a subscription during creation. Can pass in an integer or an object of key-value pairs. The unit_label is defined on the Stripe product and used to define which quantity is being set. If an integer is passed, it will apply the quantity to all products on the tier, if an object is passed with the unit_labels as keys, it will assign that quantity to the respective unit_label.
Eg: 5
OR
Eg: {product_unit_label1 : 10, unit_label2: 20}
Last updated