#Karthick
1 messages · Page 1 of 1 (latest)
If you use Subscription, you can set them to charge on the specific day of the month with billing_cycle_anchor.
- Subscription: https://stripe.com/docs/billing/subscriptions/build-subscriptions
- Billing cycle anchor: https://stripe.com/docs/billing/subscriptions/billing-cycle
is there any charges to setting the subscription billing Cycle ?
There is no charge to change the billing cycle
Ok maxmium how many customer can add on subscription billing cycle?
One subscription can only have one customer
One subscription can have only one billing cycle anchor
You'd need to set billing cycle anchor on every subscription of each customer
Hi! I'm taking over this thread.
please wait
You would need to:
- List all your active subscriptions with: https://stripe.com/docs/api/subscriptions/list
- And for each subscription, update the
billing_cycle_anchorwith https://stripe.com/docs/api/subscriptions/update#update_subscription-billing_cycle_anchor
ok once i setup billing cycle anchor the payment will happen automatically right ?
how to get all subscription payment status after the billing cycle anchor completed successfully ?
ok once i setup billing cycle anchor the payment will happen automatically right ?
Yes the customer would be billed automatically and immediately when you make the change. You can learn more about this here: https://stripe.com/docs/billing/subscriptions/billing-cycle#changing