#dhaval_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/1382317099916988477
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi
I want to take money from customer and then after i will cut my application fee and i need to transfer that money into vendor account.
is this kind of support provided by stripe? And also for above transaction if i cancel order then refund money to the customer
hi there!
if you want to send money to someone using Stripe, you have to use Stripe connect: https://docs.stripe.com/connect/how-connect-works
it is instantly transfer to vendor account?
I recommend first reading the link I shared to better understand how connect works
and also what about refund process?
again, please read the link I shared.
in connected account we need to store seller bank details?
and also is there was any api with use of we can transfer connected account money to seller
?
in connected account we need to store seller bank details?
yes people you want to send money to will need to have a Stripe account with their bank details
and also is there was any api with use of we can transfer connected account money to seller
I don't understand what you mean. who is the "seller"? is it a connected account?
when payment received it is directly going to seller account or for that we have to call some API?
PaymentIntentCreateParams params = PaymentIntentCreateParams.builder()
.setAmount(10000L) // $100.00
.setCurrency("usd")
.setPaymentMethodTypes(List.of("card"))
.setApplicationFeeAmount(1000L) // $10.00 platform fee
.setTransferData(
PaymentIntentCreateParams.TransferData.builder()
.setDestination("acct_1ABCDEF...") // Connected account ID
.build()
)
.build();
PaymentIntent paymentIntent = PaymentIntent.create(params);
from above example payment go to direct seller account or not?
which was added in connected account
from above example payment go to direct seller account or not?
this is a Destination Charge, and yes the amount will be automatically transferd to the connected account