#axiz_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/1222671540655620139
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, taking a look here
On the payment intent creation request, https://dashboard.stripe.com/logs/req_Q1RzkKFmiciLbA you did not pass https://docs.stripe.com/api/payment_intents/create#create_payment_intent-application_fee_amount. You need to specify that you want to charge an application fee on that request.
Can you try this in test mode and let me know if you have any follow up questions?
The issue here is that I am not creating the intent an application does this, are you sure that the application fee is the stripe fee ?
I am looking for the 4,27
The application fee is NOT the same as the Stripe fee. It's separate.
You're not the developer on the Platform Account?
I am a developper but my client is using stripe to handle the payments for his rentals throught booking.com
Is there a way to get the stripe fee ? This is what I am looking for
Or to calculate it, this is my only need for this project.
Hello! I'm taking over and catching up...
You need to look at the fee and fee_details properties on the associated Balance Transaction: https://docs.stripe.com/api/balance_transactions/object#balance_transaction_object-fee
Retrieve the Payment Intent and expand latest_charge.balance_transaction to retrieve the Payment Intent, the latest Charge, and that Charge's Balance Transaction in a single API request: https://docs.stripe.com/api/payment_intents/object#payment_intent_object-latest_charge
Ok but I can't get this directly from a webhook event ?
This issue I am having is that my client has multiples stripes accounts for every rentals owners, but I wan't to do an automation that handle his transactions from any of his account, my idea was to create a webhook and this way i don't have to create a connection for every accounts.