#kale_docs
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. Thank you for your patience!
âąď¸ We automatically close idle threads, which makes them read-only. Make sure you stick around to chat in realtime! If this thread is closed and you have another question you'll need to start a new thread.
đ 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/1214057058014339102
đ Have more to share? You can add more detail below, including code, screenshots, videos, etc.
This is my current setup, I create a 2nd product for each product that has the precalculated stripe fee but i have no way of collecting this fee as the platform:
Where do you want to collect the Stripe transaction fee from? The customer or the landlord (connected account)?
from the customer
In you application_fee, you can include the amount of stripe transaction fee, so that it'll go to your platform
if you are referring to the application_fee_percent available in the subscriptions api, i have tried that and it does work if the tenant uses a bank account (0.8%) to pay for the rent but im not sure how to collect the extra 30 cents that is charged if a tenant uses a credit card (2.9% + 30 cents).
What type of connected account do you use? Standard, Express or Custom?
standard
I'm afraid there is no straightforward way to do this. One way that can be done is to have higher application_fee_percent, then refund the application fee to the connected account: https://docs.stripe.com/api/fee_refunds/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
i guess i could try that, however I would like to avoid unnecessary movement of funds to avoid confusion with the landlords and tenants. Is it possible to achieve the same monthly payments behavior via automated monthly invoices?
Hi I'm taking over this thread
Can you elaborate more about "achieve the same monthly payments behavior via automated monthly invoices" ?
i would like to collect a fixed application fee from the tenant (customer) to pay for the stripe transaction fee. Currently I am using the subscriptions api to charge the tenant monthly. I am wondering if I can achieve the same montly billing functionality with the invoices api because I can charge a fixed application fee when I create an invoice.
https://docs.stripe.com/api/invoices/create#create_invoice-application_fee_amount yes you can specify an application_fee_amount with Invoice API, but you will need to manage the recurring by yourself if you don't use subscriptions
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.