#keremkusmezer
1 messages · Page 1 of 1 (latest)
go ahead! (sorry I was waiting for you to type your next sentence before making the thread)
Please put your question here @tardy grove
we have the following use case, we are a market place and using the Enable other businesses to accept payments directly follow from multiparty payments , everything works fine with the following flow const paymentIntent = await stripe.paymentIntents.create({
payment_method_types: ['card'],
amount: 1000,
currency: 'gbp',
application_fee_amount: 123,
}, {
stripeAccount: '{{CONNECTED_STRIPE_ACCOUNT_ID}}',
});
we are now required to introduce discount code in the following manner
I have a discount code with amount 100 and the product cost is 100, so basically the user has to pay 0 right, in that case we should not charge anything from their cc card right?
and transfer the deducted fee from our account to the sellers account stripping out the finds commision fee
https://stripe.com/docs/connect/top-ups#confirm-funding-purpose below is the description and in bold is the reason that suits us.
Paying bonuses or other one-off payouts, independent of specific charges.
Providing customer discounts while still paying full price for goods or services to sellers.
Adding funds from non-Stripe income (e.g., checks or funds from another processor).
Enabling faster payouts (e.g., pay a vendor before incoming funds become available).
Providing customer discounts while still paying full price for goods or services to sellers. ==> that is exactly our scenario, but as we are not in the us, we cannot use that feature
any further suggestions on this, how we can implement it?
karbi?
Give me a minute to read this through - it's a lot to take in
ok sure, if any questions i can explain in a easier manner
So basically your question boils down to how to implement top ups if you're not in the Us, correct?
yes exactly , that is my main requirement
I'd suggest contacting support (https://support.stripe.com/contact) about your use case. There are some countries where top ups are in beta, and contacting support would be the best way to ask to join
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
i saw this actually https://stripe.com/docs/connect/add-and-pay-out-guide?integration=with-code#handle-users-that-have-not-completed-onboarding
can that solve my problem?
we checked that, looks like it is in beta in eu but not in the uk
but will checkout support again
The link you sent wouldn't solve your problem either - that dashboard flow is the same as top ups
ok got it
it is us only, do you have any other solution in head. in which i can simulate the behaviour
?
Unfortunately, top ups is really the only solution for you. Definitely write into support again!
actually will it be a feasible solution, i define my own bank account as a customer to the system and make the payment from there
in case of discount codes then it will look like i deducted that amount from a third party customer and the market place member will get his own payment correctly instead of the user who makes the payment
wdyt?
karbi
i know that is a hack
" i define my own bank account as a customer to the system and make the payment from there"
Can you clarify this? Are you saying you would add your own bank account as a customer, and charge it?