#dispalt_api
1 messages ยท Page 1 of 1 (latest)
๐ 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.
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?
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
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
sounds good thank you!
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.
You could list all recent balance transactions by type (stripe_fee) - https://docs.stripe.com/api/balance_transactions/object#balance_transaction_object-type
and look for source
how does it work with connected accounts I am assuming a single charge on the master account, right?
I believe it depends on where you're storing the PaymentMethod.
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"
},
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?
maybe thats a connected account thing
we have two accounts so maybe it double charges, hmm
Not sure ๐
I'd suggest talking to Stripe Support as they're experts on fees and can help
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
whelp, thank you for the help, as this was actually... very helpful!