#istcf_ach-event
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/1498420597653377034
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello
Are you just looking to get an event that suggest that "a payment was made but hasn't succeeded yet"?
yes, I need the most updated event that I can rely on to create a payment record based on its data
In that case, you can listen to payment_intent.processing event.
It's emitted for the delayed notifications payment methods like ACH
got it, and it only needs the payment intent to be finanlized 4-5 days after?
Sorry, not sure what you mean by
and it only needs the payment intent to be finanlized 4-5 days after?
PaymentIntent is generated once the invoice has been finalized. Once the customer pays using ACH, that Payment Intent would enter processing state
ok, that's the answer.
can you help me with a specific ACH recurring attempt I tried that failed?
I can try but I would suggest talking to our Support team about this too as they're experts and know more about declines than my team on Discord
let's try,
why this invoice failed? is it something with coding?
https://dashboard.stripe.com/acct_18jEYmAejZQGNO8N/connect/view-as/acct_1F7oEuLDN5MV0BY2/invoices/in_1TPpcTLDN5MV0BY27OZTWTMO
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I searched deeply the response objects but I didn't find any clue why it failed
@hardy gale what do u say?
Still looking. It's odd that it failed with no error on the PaymentIntent.
thanks for checking this out
Ah, the customer does not have a default payment method attached
The subscription doesn't have a default payment method on it either
So Stripe won't know which payment method to charge
istcf_ach-event
got it. so that's a result of my code not handling the webhook correctly. I created it on dev when I received invoice.payment_succeeded. I assume that I'll have to create it with payment_intent.processing
thanks @hardy gale , I'll make the changes
Taking over, let me know if you have follow up questions
do u send payment_intent.processing with CC payments also or it's only for ACH?