#Jamie-connect

1 messages · Page 1 of 1 (latest)

dense patrol
#

Hi! If they are technical questions for developers, then yes! What are your questions?

tall smelt
#

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?

dense patrol
#

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?

tall smelt
#

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, },

dense patrol
#

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

tall smelt
#

is this the correct way to split a payment between

The platform (account a)
The seller (account b)

dense patrol
#

transfer_data: { destination: stripeAccountId, },
Yes, this code means you are using destination charge

tall smelt
#

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)

dense patrol
tall smelt
#

Does stipe still charge a transaction fee if there is a refund?

dense patrol
#

There are no fees to refund a charge, but the fees from the original charge aren’t returned.

tall smelt
#

Could we just pre-auth the transaction until its accepted? If its not accepted release?

dense patrol