#manuel_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1480965020207812648
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there! Did you update your default API version recently? We made numerous breaking changes around the relationship between payment objects (ch_, pi_) and Billing objects starting in the Basil major release
yes
I'd really recommend reading the changelog before doing this, but this is the document you need most: https://docs.stripe.com/changelog/basil/2025-03-31/add-support-for-multiple-partial-payments-on-invoices
If you have a charge and you need an Invoice, you should look the Charge's payment_intent property and then use it with the new "List Invoice Payments" API endpoint: https://docs.stripe.com/api/invoice-payment/list?lang=node&api-version=2025-12-15.clover#list_invoice_payments-payment-payment_intent
You can provide type: 'payment_intent' and payment_intent: 'pi_123' as arguments and you'll get the Invoice object that matches
No problem!