#Jayy
1 messages ยท Page 1 of 1 (latest)
hi there, can you share the request id [0]? it'd look like req_xxx
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
you will want to add recurring prices to https://stripe.com/docs/api/subscriptions/update#update_subscription-items
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
the add_invoice_items is for one time prices
but if i want to prorate the prices, they told me to use the add_invoice_items as you see here: https://discord.com/channels/841573134531821608/1090214991182958602
if i just add the item, would prorating work ?
gimme a while to read through the previous thread
i think what Tarzan meant was for the $15 (monthly addon) to be added to add_invoice_items. What is the $11.5 (last month difference) prorating for? is it the monthly add on?
yes, what i'm basically looking for is if someone purchases another addon or subscription, i need it to add to their current subscription so that they're always charged at the same time
so if my billing cycle ends on the 10th of each month. on the 20th i buy something, i dont want to charge the customer for it at that time. i'll charge him at the 10th of next month
You can update the subscription with the new items, and set the billing_cycle_anchor to unchanged:
https://stripe.com/docs/api/subscriptions/update#update_subscription-billing_cycle_anchor
okay thanks! i'll check back with you guys if i need more help but that should fix my issue for now ๐ thanks again!
Np!