#KRS
1 messages · Page 1 of 1 (latest)
I'd guess you'd check against the attempt_count field: https://stripe.com/docs/api/invoices/object#invoice_object-attempt_count
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ok. attempt_count will be 1 for the first attempt
Correct. And that count is only incremented by the retry schedule
(i.e. calling /pay for that invoice won't increment that number)
ok.