#refikimi_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1272813567892000811
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Are you asking about event delivery retry or payment retry?
Event delivery for the event: invoice_payment_failed when I get this event, I want to know will the payment process be retried in the future? If no, to warn me on slack so somebody from our team takes a look into it
example when this invoice_payment_failed raised the event, the process won't be retried again, then I want to inform our team
Can you share with me the invoice ID?
OK, this one in particular: in_1PmY0dHzzIMXxbBCPrAIFTHf
Basically I got a message that the invoice failed but it was actually succesful
and also I check on the event invoice_updated:
when (next_payment_attempt is None AND not auto_advance AND amount_paid !+ amount_due )
(the ANDs represent the logical and in code)
as well as this:
event.data["next_payment_attempt"] is None
and event.data["auto_advance"]
and event.data["amount_paid"] != event.data["amount_due"]
Can you share with the ID of this invoice from screenshot?
oh sure: here is the payment intent: pi_3PblG2HzzIMXxbBC0Goem9uk
Thanks. https://dashboard.stripe.com/events/evt_1Pf7LXHzzIMXxbBCj61C8ADf there's an invoice.marked_uncollectible event for this invoice. If your billing settings set the invoice status to uncollectiable after all retries, your webhook will receive this event
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
You'll find the invoice's status becomes uncollectiable and next_payment_attempt is null
so uncollectiable and next_payment_attempt must be set, second to null and I am sure this will not be retried?
Yes you are right
Thanks a lot for your help â¤ď¸