#noaabarki
1 messages · Page 1 of 1 (latest)
👋 Thanks for reaching out
You can follow this guide in order to integrate Subscription with your application
https://stripe.com/docs/billing/subscriptions/build-subscriptions
You can use either Stripe Checkout or Elements.
I'd like to configure my product billing cycle to the 1st of the next month with a prorated invoice until the anchor.
To achieve this, when creating the Subscription using the API, you need to set the billing_cycle_anchor to the 1st of the next month:
https://stripe.com/docs/api/subscriptions/create#create_subscription-billing_cycle_anchor
Thank you!
I currently use Strip with CheckoutSession but I was told that setting the billing_cycle_anchor isn't supported when using CheckoutSession, am I wrong?
but I was told that setting the billing_cycle_anchor isn't supported when using CheckoutSession, am I wrong?
Ah yes! sorry I missed that. So you can use only Elements:
https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements
Thank you!
Np!