#luftjunkie-transfers-topups

1 messages · Page 1 of 1 (latest)

chilly lintelBOT
#

Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

broken lark
#

And well here's the code of the code invoked: `app.post('/createTransferToWinner', async (req, res) => {
const { destinationId, amount, currency } = req.body;
console.log(destinationId, currency);
const payout = await stripe.topups.create(
{
amount: amount * 100,
currency: currency,
},
);

res.send({ payout });
});`

round coral
#

Is there a reason you believe this should be supported by Stripe? Topups are only available in certain countries (https://stripe.com/docs/connect/top-ups - at the top you can see it's US only), so ify ou're using a PL-based account this error would be expected

broken lark
#

So is there any possibility to send from one acount to another a certain amount of money?

broken lark
round coral
#

Yeah you can see here it's US only

#

In terms of sending money from one account to another - typically you'd use Transfers to move funds from the platform to the connected accuont as long as they were in the same region

broken lark
#

so instead of toups just change on transfer and the as destination desired account?

broken lark
round coral
#

I believe top ups have pretty strict limitations/compliance regulations that prevent us from making it available everywhere unfortunately

#

and yes, try out transfers and see if that fits your use case

#

luftjunkie-transfers-topups

broken lark
#

Ok, I will do it in a second.

#

I've got a question. What is the charge_id? const transfer = await stripe.transfers.create({ amount: 1000, currency: 'usd', source_transaction: '{{CHARGE_ID}}', destination: '{{CONNECTED_ACCOUNT_ID}}', });

#

How should i understand it? So i have to create a special charge and put the id there?