#ayye_plus
1 messages · Page 1 of 1 (latest)
Generally that just means the customer hasn't completed payment
Can you send some payment intent id's so I can take a look?
Sure! Appreciate your help!
pm_1NlYAdGDW5CVzHx10bEGvgzP
pm_1NmKeKGDW5CVzHx1XibEZx1S
pm_1NmyWeGDW5CVzHx1jnB4vVZj
Those are payment method id's. Payment Intent id's start with pi_
Sorry, one moment
pi_3Nq1y1GDW5CVzHx11tSqq7VS
pi_3Nq5VUGDW5CVzHx11dOq4MTo
pi_3Nq6I8GDW5CVzHx11k8X5P1M
I see for these it says "PaymentIntent status:
requires_confirmation"
We weren't having any payments come back with this until a couple of days ago. What can be done for the customer to provide this confirmation?
Strange that this wasn't happening until a few days ago. PaymentIntents have always required confirmation since we built them. If you can share an example from a few days ago I can look
But recommend you read https://stripe.com/docs/payments/paymentintents/lifecycle
Payment Intents always require confirmation
I don't see pi_ for completed payments
My developer who has done this integration just said "the payment intent its just created but not confirmed"
Looking at the code I do not see a parameter being sent that indicates we want to do a paymentintent. Given the resource you shared, it sounds like this step is generally skipped for this type of application.
You can't process a payment unless you confirm it
It sounds like programmatically this is confirmed though.
We have several payments currently waiting for a confirmation and I do not know how to provide that confirmation for existing paymentintents, or to make sure payments don't get stuck in this confition going forward
It sounds like my developer might know what to do here
"A payment intent is confirmed after it is created from what I see, so we can confirm them all
And for future payments I have to add this code and they should now show as successful payments"
You call this endpoint to confirm a payment intent: https://stripe.com/docs/api/payment_intents/confirm
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
If you want to confirm on creation, you need to pass this: https://stripe.com/docs/api/payment_intents/create#create_payment_intent-confirm
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thank you for your help