#ChibiDragoon
1 messages ยท Page 1 of 1 (latest)
What do you mean?
Is the customer in that instant the connected account customer or the one that has the payment method?
These should be one and the same, right?
i see that it requires confirmation
I get that part
i am using stripe connect to create a payment intent. I created a payment intent token that i gave to a customer that the connected user has that is a copy of the one i have in my platform
Got it
since i am in test mode, i wonder where the requires_confirmation comes from
You should use the payment method & customer on the same account as the one the payment intent is on
Ah
You need to read this: https://stripe.com/docs/payments/intents
requires_confirmation is part of the normal PI flow
But in most integrations confirmation is automatic
that's what i figured
But yeah give that doc a read through first and see if that makes sense
alright thank you
No problem. Really recommend anyone working with Payment Intents to understand that flow first
for sure :), i will take a look right now thank you ๐
No problem. Let me know if you have any more questions after
Can you share the id of the payment intent
pi_3N1wrHR3ylUYYiIE1L4AidRw
I must have forgot something when i made the api call ๐ค
Ah yeah you need to pass confirm: true if you want to also confirm during the creation of the PI
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
ahhh
In most flows you collect payment method after creation so that's why it's not automatic
If you pass confirm true on creation then that takes care of it
Cool