#cian54
1 messages · Page 1 of 1 (latest)
How do you do what specifically? How are you integrating? What have you tried?
I have tried subscription schedule to manage it but it didn't work well for me for now I'm trying to do it with only subscription api (create / update)
I don't now maybe create a yearly subscription and set pending_invoice_item_interval to month, the update would normally take effect in the next year cycle. or if specified by the user it should take effect immediately (I have to api route each one responsible for a type of update)
Not sure how pending_invoice_item_interval would help you in this secenario
emm wouldn't that make charge the user every month ?
what do you suggest I do then ?
Not unless you're manually adding invoice items
Let's break down your question:
I need a to create a yearly subscription, with invoice created evry month (user need to pay every month)
Do you need help with this part?
Yes
Ok, what you're describing isn't necessarily a concept in Stripe. You have 2 options:
- You create a Sub Schedule that bills for a monthly price 12x times, and then ends: https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#installment-plans
- You create a Sub that bills for a monthly price that cycles, and set
cancel_atto be 12x cycles away.
You can't say 'use this yearly price, but split it up into 12 cycles'
Does that answer that part?