#feni-patel_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/1403289288850014328
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello @visual holly
Hello! How can we help?
I want to make flow as follows using payment intent without using setup intent.
(1) Create payment intent on platform account with customer of platform account
(2) From front end i will get paymentMethodId of platform account customer
(3) During payment i want to direct charge on express connect account by copying platform account customer and paymentMethodId
Is there an actual payment in step 1? Or are you just saving the card at that point? Overall what you want to do is possible: https://docs.stripe.com/connect/direct-charges-multiple-accounts
direct charge on express connect account
Why direct charges? This is not something on Express accounts we generally recommend for various reasons
Are you encountering a particular problem/error when you do this? Or have you not yet tried? I'd recommend following the guide above and let us know if you've any questions
In payment intent is it possible this flow ?
Becacuse we have tried setup intent. Everything works fine but in 3d secure authentication it shows 0.0 amount during transaction. Event though actual amount deduct during transaction but just display 0.0 in 3d secure authentication page
You mean in step 1 that you outlined? Yes, you can use a Payment Intent on the platform. You'll need to pass setup_future_usage when creating the intent and that will save the card on the platform
Yes, that's expected in a Setup Intent flow as there is no initial charge so the 3DS challenge UI reflects that
which value should i passed into setup_future_usage ?
Depends on how you intend to use the saved card: https://docs.stripe.com/payments/payment-intents#future-usage
It sounds like you want to save the card on the platform without an initial payment yes? If so, a Setup Intent is your only option really and unfortunately some bank do show those as zero-amount payments in a 3DS/auth flow. Agree that can be confusing for your customers
thanks