#Dkango
1 messages · Page 1 of 1 (latest)
Hi @languid vessel, how can I help?
Re-paste the question over:
I have a question regarding the PaymentLinkCreateOptions object. I need to know how to define the ApplicationFeeAmount property of this object. Is this amount in cents? so for example, if I have a total amount of $100 in the Payment Link and I want the ApplicationFeeAmount to be 3$ I'd need to assign this to be 3 or 300 (as cents)? Thank you in advance.
It depends on the currency. Stripe uses the smallest unit for the currency. For example, USD's smallest unit is in cent, so USD 1 = 100 cents. In the request, it'll set to amount=100
You can refer to the doc here: https://stripe.com/docs/currencies#zero-decimal
Thanks River
No problem! Happy to help 😄