#admond99_error

1 messages ¡ Page 1 of 1 (latest)

subtle spearBOT
#

👋 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/1337018706244538479

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

steady estuary
#

hi there!

#

why do you first create a SetupIntent and then two PaymentIntents? Why not directly the two PaymentIntents? or even better: a single PaymentIntent with the total amount?

tired dune
#

firstly, cannot use single paymentintent because payment need to go to two different connected account.
Setup intent was used so that I could verify 3ds authentication single time. but because of "always authenticate card" it requires verification in every transaction.

#

I need to use Direct charge for connected account to reduce stripe fees as possible.

steady estuary
#

Setup intent was used so that I could verify 3ds authentication single time.
that's not how it works. it's the bank that decides if 3DS is requestes or not. so potentially the bank will request 3DS zero time, or it will request it every single time.

#

firstly, cannot use single paymentintent because payment need to go to two different connected account.
and you can't use Separate Charges & Transfers for this?

tired dune
#

What would be the best way to do it? 1. using single payment intent to main account and tansfer to other accounts? 2. use 2 payment intent for both vendors? or any other solution you suggest?

steady estuary
#

if you can use Separate Charges & Transfers instead of Direct Charge, then it becomes easy:

  • don't create a SetupIntent
  • create a single PaymentIntent for the full amount on the platform account
  • then create two Transfer, one for each connected account
#

this way, you have at most one 3DS flow.

tired dune
#

Thanks , i'll consider your solution.

Also, I am using ACH payment and after succeeded of setupintent using webhook 2 payment intents are triggered., In testing env, the payment was recieved in an instantly.

how many days will it takes in production, 4 days for setup intent and 4 days for payment intent? in total 8 days?

steady estuary