#Matt K
1 messages · Page 1 of 1 (latest)
Wha do you mean by pending in this case? Remains unpaid, or something specific to an async payment method?
When an invoice is paid via ACH, it's marked as "pending" in the GUI, but there isn't an obvious property on the invoice object to determine this, so I'm wanting to make sure that I'm matching the stripe GUI in our own tool
Hello 👋
The invoice should have a payment_intent parameter associated which should reflect the status of the payment
Is invoice.payment_intent.status == 'processing' what the GUI uses? And nothing else?
Thanks!