#Nate.tsg
1 messages · Page 1 of 1 (latest)
Generally you'd listen for webhook events: https://stripe.com/docs/billing/subscriptions/webhooks#additional-action
Payment status isn't tracked directly on the Invoice object
Yeah that works well, I wanted to display a list of invoices from stripe directly and show the payment status also
You'd need to expand the payment_intent field on the Invoice object: https://stripe.com/docs/api/invoices/object#invoice_object-payment_intent
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
That doesn't require any additional API calls, just an additional param: https://stripe.com/docs/api/expanding_objects
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Great this is what I was looking for, thanks