#meisei81
1 messages · Page 1 of 1 (latest)
Hi! Can you share the request ID (req_xxx)? Here's how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
req_9D8abgctITRdW1
This invoice's amount is 0 no payment is needed, and that's why payment_intent is null.
My flow is: create invoice item, create invoice , finalize invoice and confirm payment intent. I create invoice item with this price id: price_1Nds3sKrMcyDrN0VTpkbFt2Z How could the invoice's amount be zero?
This invoice doesn't have any line_items
How could I add items to invoice?
I think the item would be added to invoice automatically
https://stripe.com/docs/api/invoices/create#create_invoice-pending_invoice_items_behavior you need to set pending_invoice_items_behavior to include if you wish the invoice to include pending 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.
When did this change start
I process the invoice like I mentioned above since last year.
got it. thanks.