#dispalt_api

1 messages ยท Page 1 of 1 (latest)

cobalt ploverBOT
#

๐Ÿ‘‹ 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/1361768423243251743

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

stoic herald
#

hello! i am not sure where this lives off the top of my head, but i think it should end up in the balance_transaction as that's where most data related to stripe fees ends up

#

do you have any examples you've tested out yet?

drowsy apex
#

thats what I thought, but its per verification of a bank account so attaching to the payment intent/charge doesn't make as much sense

stoic herald
#

fyi the discord is a little busy at the moment - i need to wrap up another thread but i will come back to this asap

drowsy apex
#

sounds good thank you!

cobalt ploverBOT
crisp bay
#

Hello there
taking over here

#

Afaik, the fee is charged to the Stripe account so there should be a balance transaction object for this. However, it won't be linked to a charge object as such.

drowsy apex
#

how does it work with connected accounts I am assuming a single charge on the master account, right?

crisp bay
#

I believe it depends on where you're storing the PaymentMethod.

drowsy apex
#

we use the setup intent to create on the master or parent account then copy it to the connected account

#

so there's no user interaction when they use a connected or master account

#

aha I found one, thank you!

#
    {
      "id": "txn_1RCvIOBn4C8GqDfuCb1vnZIx",
      "object": "balance_transaction",
      "amount": -300,
      "available_on": 1744430636,
      "created": 1744430636,
      "currency": "usd",
      "description": "Connections Verification (2025-04-01 - 2025-04-30)",
      "exchange_rate": null,
      "fee": 0,
      "fee_details": [],
      "net": -300,
      "reporting_category": "fee",
      "source": null,
      "status": "available",
      "type": "stripe_fee"
    },
#

well not sure why that's 3$

#
    {
      "id": "txn_1RCx7sBn4C8GqDfuBnpB8VdP",
      "object": "balance_transaction",
      "amount": -150,
      "available_on": 1744437672,
      "created": 1744437672,
      "currency": "usd",
      "description": "Connections Verification (2025-04-01 - 2025-04-30)",
      "exchange_rate": null,
      "fee": 0,
      "fee_details": [],
      "net": -150,
      "reporting_category": "fee",
      "source": null,
      "status": "available",
      "type": "stripe_fee"
    },
crisp bay
#

Great, I'm not sure I can help for the amount. My team won't know much about fees and how they're charged. Chances are there were more than once verification involved?

drowsy apex
#

maybe thats a connected account thing

#

we have two accounts so maybe it double charges, hmm

crisp bay
#

Not sure ๐Ÿ˜…

#

I'd suggest talking to Stripe Support as they're experts on fees and can help

#
drowsy apex
#

whelp, thank you for the help, as this was actually... very helpful!