#Jamie-connect
1 messages · Page 1 of 1 (latest)
Hi! If they are technical questions for developers, then yes! What are your questions?
If the questions are not technical, you should ask them here: https://support.stripe.com/?contact=true
Yes it's a technical question.
We are using stripe connect for a marketplace.
We are struggling to find certain information within the developer docs regarding the following.
Payouts to the user - We are currently splitting the payment to our stripe account and then to the seller. We are needing to know how the seller is then paid out, is this automatically handled with stripe or do we need to pass any information through within the transaction data? i.e a timescale for payout.
I.e Does this happen every day? every week?
I also then have a question regarding refunds, how do we handle this if we are using stripe connect?
I.e Does this happen every day? every week?
This is explained here: https://stripe.com/docs/connect/manage-payout-schedule
I also then have a question regarding refunds, how do we handle this if we are using stripe connect?
What types of charges are you making? direct charges, destination charges, separate charges and transfers?
Whats the difference between direct charges, destination charges, separate charges and transfers?
I think we are using destination charge
I am using paymentIntent as the way to checkout the payment.
And using @stripe/react-stripe-js to handle the checkout
amount: amount * 100, currency: 'GBP', payment_method_types: ['card'], application_fee_amount: amount * 10, transfer_data: { destination: stripeAccountId, },
Whats the difference between direct charges, destination charges, separate charges and transfers?
Everything is explained here, including how the refunds are handled https://stripe.com/docs/connect/charges
is this the correct way to split a payment between
The platform (account a)
The seller (account b)
transfer_data: { destination: stripeAccountId, },
Yes, this code means you are using destination charge
Yes based on the link you sent,
Customers transact with your platform for products or services provided by your user.
This is the way we should be doing it, used on our use case.
We have merchants (sellers) who provide a product, we take a fee 10% - Part of the fee covers the stripe fees and we retain the remaining as a platform fee (to use our software)
Sounds good! So for refunds, everything is explained here: https://stripe.com/docs/connect/destination-charges#issuing-refunds
Does stipe still charge a transaction fee if there is a refund?
There are no fees to refund a charge, but the fees from the original charge aren’t returned.
This is mentioned here: https://stripe.com/docs/refunds
Could we just pre-auth the transaction until its accepted? If its not accepted release?
I'm not sure I follow. Do you mean placing a hold on a card? If so there's this: https://stripe.com/docs/payments/capture-later