#cj_subscription-fees
1 messages ยท Page 1 of 1 (latest)
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- cj_best-practices, 2 hours ago, 15 messages
- cj_best-practices, 2 days ago, 90 messages
๐ 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/1274000867573633147
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
You can only do a percent with subscriptions: https://docs.stripe.com/api/subscriptions/create#create_subscription-application_fee_percent
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
If I want to charge a fixed amount, whats the best to acheive this
or are you saying its impossbile / no workaround?
Impossible via application fee. You could do an account debit as a workaround to collect back a certain amount, but this isn't supported in all countries or account types: https://docs.stripe.com/connect/account-debits
Alternatively, you could not use Subscriptions, and create invoices using your own Subscription logic: https://docs.stripe.com/api/invoices/create#create_invoice-application_fee_amount. Invoices allow an application fee amount
I see... is there any stripe fee associated with account debit?
Not sure. We don't know anything about fees/pricing in here
We just answer api questions
You could ask our support team: https://support.stripe.com/contact
Find help and support for Stripe. Our support site 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.
I see. If a payment intent is not captured and refunded, will Stripe take any fee off that?
I guess I need to ask the support lol
Yeah not sure
Is there any invoice generated for the application fee taken for the destination charge?
It's not a separate invoice
It's an application fee on the regular subscription invoice
can the connected accounts view how much application fee they paid?
like aggregate view for the month
What kind of connect accounts?
Not really sure though. We also don't know much about the dashboard in here
do you mean like express?
yeah
Really I recommend you just test this out in test mode to see what the account holder can see
I see. is there any way to make all the subscriptions to start on the same day? but still get them to pay the partial amount for the 1st month
For example,
I want my billing cycle to be 25th of every month.
Let's say person A signs up for a subscription on 17/08/2024.
- I want the first invoice to be prorated amount from 17/08/2024 to 25/08/2024
- I want the 2nd invoice to be a full month from 25/08/2024 ~ 25/09/2024
You need to set billing cycle anchor to the 25th
awesome, is it possible to create a monthly subscription but the price is calculated daily?
i.e. Feb should be cheaper than other months
Hi there ๐ jumping in as my teammate needs to step away soon. No, we don't have prebuilt functionality for that, you would need to build custom logic for that.
I see ๐ฆ
cj_subscription-fees
when I'm onboarding accounts to my Connect platform, is there way to bypass the mobile phone verification step?
No, not with our hosted onboarding flows.
what about if I use embedded or api?
An embedded onboarding flow is still one we host, so no. An API onboarding flow is where you build your own UI for onboarding connected accounts, so you're free to build that as you see fit.
oh so api won't block me from creating connected account if it didn't do the "verification" step
will that connected account have any restriction for not doing the verification?
I'm not sure I understand what you mean. Verification is still performed for API onboarding. We discuss how to handle the verification errors that can arise from that in our guide for that flow here:
https://docs.stripe.com/connect/api-onboarding#handle-verification-errors
Build your own onboarding flow using Stripe's APIs.
is verifying phone number a requirment for api onboarding?
The necessary information for onboarding fluctuates with account type, capabilities, service agreement type, platform country, and connected account country. You can use the table on this page to see a list of required information for onboarding an account, after populating the form above the table with the details of your scenario:
https://docs.stripe.com/connect/required-verification-information
I see
Phone - First charge - individual.phone
Will this number need to be verified (i.e. getting the short-code via sms) or can I just enter a number without verification
does Stripe have an API endpoint specifically for managing phone number verification?
I believe it just needs to be provided, testmode should replicate that behavior if you want to test and confirm.
I cant find any api relating to phone number verification :/ maybe its not even a thing?
Do you see a verified tag in the doc beside the row you're talking about in this message?
no
Okay, so it needs to be provided, and we'll likely do basic validation on it, but it doesn't need to be verified then.