#acpnayak
1 messages · Page 1 of 1 (latest)
Hello! You can set application_fee_percent to collect a percentage of the total: https://stripe.com/docs/api/payment_links/payment_links/create#create_payment_link-application_fee_percent
% option is enabled only if its subscription
Hmm I can why you'd want to do that, but unfortunately that's not currently supported. The payment application fee is a fixed amount.
To control this dynamically you'd need to build a custom integration and I wouldn't recommend that unless truly necessary
say I have product of price $100, and I set the application fee to $10
Now when user purchased 3 qty, application fee still remains the $10. It should be $30
application fee is not multiplying with the qty purchased
Yep, I understand. You could achieve this by creating the transfers manually in a webhook handler using this approach, after a given payment succeeded:
https://stripe.com/docs/connect/charges-transfers
but as I said, this is more complex
I can share the feedback about this, but what you ask is not currently possible