#akashi_docs

1 messages ยท Page 1 of 1 (latest)

swift ruinBOT
#

๐Ÿ‘‹ Welcome to your new thread!

โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

๐Ÿ”— This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1343516318334451773

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

rugged wolf
#

hi there!

#

I'm not sure I follow your question. do you want to know the Stripe fees for payouts?

royal swift
#

Im just having trouble understanding how fees are calculated for connected accounts using the Standered + Destination Charge fund flow.

#

Or perhaps I'm using the wrong setup?

rugged wolf
royal swift
#

Yeah

rugged wolf
#

if you are using Standard connected account, and not setting that parameter, then there are no payout fees.

royal swift
#

So for example. Let's say a person is planning to pay the connected account $100, where the application_fee is %10 percent. In my understanding, of destination charges, the platform will receive 10 - 3.2 (stripe processing fee = 100 * 0.029 + .30) = 6.8. The customer will receive the $90?

rugged wolf
#

yes

royal swift
#

Last question about my current code,

const account = await stripe.accounts.create({
        type: 'standard',
        country: 'HK',
        email: userData.user.email as string,
        capabilities: {
          card_payments: { requested: true },
          transfers: { requested: true }
        },
        settings: {
          payouts: {
            schedule: {
              interval: 'manual'
            }
          }
        }
      });

This would still be considered a standard account right? Yet im getting strange "Stripe Fees" as shown above.

swift ruinBOT
rugged wolf
#

this would still be considered a standard account right?
correct

cinder lake
#

๐Ÿ‘‹ taking over for my colleague. Let me know if there's any follow-up Qs I can answer!

rugged wolf