#Matty (AloysiusS)

1 messages · Page 1 of 1 (latest)

vital charmBOT
lunar zenith
#

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

peak wyvern
#

Three ` marks

#

But no, you cannot transfer from one Connected Account to another

#

The transfers go from the Platform to the Connected Accounts

lunar zenith
#

ok. I didn't think so, but I told someone I'd ask

peak wyvern
#

Backtick(`), not single quote('). hard to see the difference but that's how the code formatting works

lunar zenith
#

just like regular markdown 🙂

peak wyvern
#
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

lunar zenith
#

thanks that was it