Reputation: 3
I need to set subscription billing to 1st of every month in stripe. I have followed doc https://stripe.com/docs/billing/subscriptions/billing-cycle, but not exactly cleared how to set it for per month.
Thanks in Advance
Upvotes: 0
Views: 773
Reputation: 6520
For Stripe Subscriptions to bill on the 1st of every month you need to do the following:
billing_cycle_anchor
to a timestamp on the 1st of the monthFrom the documentation you linked to in your question:
For example, a customer with a monthly subscription set to cycle on the 2nd of the month will always be billed on the 2nd.
So it sounds like you're on the right track!
Upvotes: 2