#keremkusmezer

1 messages · Page 1 of 1 (latest)

whole pecan
#

go ahead! (sorry I was waiting for you to type your next sentence before making the thread)

#

Please put your question here @tardy grove

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

#

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?

whole pecan
#

Give me a minute to read this through - it's a lot to take in

tardy grove
#

ok sure, if any questions i can explain in a easier manner

whole pecan
#

So basically your question boils down to how to implement top ups if you're not in the Us, correct?

tardy grove
#

yes exactly , that is my main requirement

whole pecan
#

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

tardy grove
#

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

whole pecan
#

The link you sent wouldn't solve your problem either - that dashboard flow is the same as top ups

tardy grove
#

ok got it

#

it is us only, do you have any other solution in head. in which i can simulate the behaviour

#

?

whole pecan
#

Unfortunately, top ups is really the only solution for you. Definitely write into support again!

tardy grove
#

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

whole pecan
#

" 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?

tardy grove
#

yes exactly in case of discount codes, instead of the real customer to mimic the discount behaviour

#

basically the seller will get his payment still from my account and the buyer will get the deducted amount