#uNki-subs
1 messages ยท Page 1 of 1 (latest)
hey! ๐
Yes, it's possible to create Subsriptions that renew every 3 or 6 months, but they wouldn't list out each individual month on the Invoice
You'd create a price that sets recurring.interval: month and set recurring.interval_count to either 3 or 6 depending on how many months you want (https://stripe.com/docs/api/prices/create#create_price-recurring-interval_count)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
So in my case (3 months รก $20) I'd set interval_count to 3 and the fee to $60?
yup!
the outcome is the same but the communication with the customer would be my part, explaining them that 3x$20 = $60
Correct
Alright, thank you! It's a pity that it's not possible though, would be really nice
our use case is exactly that "$20 a month", choose if you like to pay every 3, 6, 12 or 24 months. But it's better than nothing I guess ๐
Yeah, sorry there isn't an easy way to do that - the way I suggested is definitely the simplest way with what our api offers right now