#Jinx
1 messages · Page 1 of 1 (latest)
Hi! Can you share the request ID (req_xxx)? Here's how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center 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.
Hey! It's a subscription so I can't put in an amount. Do you however know how to calculate a percentage on the amount that will cover stripes fees? (2.9% + 30 cents)
Subscription can only take a application_fee_percent, not application_fee_amount. You need to do your own calculation for the application_fee_percent.
If you want to let the connect account to be responsible for the application fee, and the connected account is of standard type, you can use direct charge instead (https://stripe.com/docs/connect/subscriptions#decide-between-direct-charges-and-destination-charges)
Ok thank you. Did my own calculation and am getting an invalid decimal error
is it too long or something?
The application_fee_perecent accepts a integer, not floating number
https://stripe.com/docs/api/subscriptions/create?lang=cli#create_subscription-application_fee_percent
A non-negative decimal between 0 and 100, with at most two decimal places.
Gotcha thanks!