#dingkai031
1 messages · Page 1 of 1 (latest)
Hi there's no expiration date for a PaymentIntent.
how about the invoice?
There's no expiration date either, but there's a due_date (https://stripe.com/docs/api/invoices/object#invoice_object-due_date) applicable for collection_method=send_invoice
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
okay, is there a webhook if the invoice pass the due date?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
thanks, is the request body of the webhook is available in the docs? I can't find it
You mean the data object of the event? it's a invoice event, so you can expect a invoice object https://stripe.com/docs/api/invoices/object#invoice_object
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I see, okay then. Thank you for the help :D.