#Matty (AloysiusS)
1 messages · Page 1 of 1 (latest)
I dont suppose something like this would work:
'''
await stripe.transfers.create({
amount: 1500,
currency: 'usd',
destination: '{{PLATFORM_STRIPE_ACCOUNT_ID}}'
}, {
stripe_account: '{{CONNECTED_STRIPE_ACCOUNT_ID}}',
});
'''
sorry I'm not sure how to make a code block in discord
Three ` marks
But no, you cannot transfer from one Connected Account to another
The transfers go from the Platform to the Connected Accounts
ok. I didn't think so, but I told someone I'd ask
Backtick(`), not single quote('). hard to see the difference but that's how the code formatting works
just like regular markdown 🙂
await stripe.transfers.create({
amount: 1500,
currency: 'usd',
destination: '{{PLATFORM_STRIPE_ACCOUNT_ID}}'
}, {
stripe_account: '{{CONNECTED_STRIPE_ACCOUNT_ID}}',
});
Well you benefit from using the same syntax as something as widely accepted as markdown
Anyway, sorry to say that won't work
thanks that was it