#milashin_im
1 messages · Page 1 of 1 (latest)
Can I use the API to register an account with tos_acceptance?
you can for Custom accounts yes. For Express or Standard accounts, no — you redirect the user to our hosted onboarding pages and they accept the terms during that.
Let me explain.
I need to create multiple accounts in my business app, I have all the necessary details to create an account in stripe. The main task of my system is to call payments from one account to another, the amounts of these payments are created by my application.
- Create a stripe account without the end user (all financial information is provided by the user)
- Perform money transfers from one account to another by them ID
cool, then I would use https://stripe.com/docs/connect/collect-then-transfer-guide
I have all the necessary details to create an account in stripe
unless you use Custom accounts you can't really provide all that directly to the API, there's an onboarding page you redirect the user to(though you can prefill some of it). I wouldn't recommend you use Custom as it's a large amount of work, you should use Express(which is what that guide is about).
Thank you very much.
var options = new AccountLinkCreateOptions
{
Account = "acct_1032D82eZvKYlo2C",
RefreshUrl = "https://example.com/reauth",
ReturnUrl = "https://example.com/return",
Type = "account_onboarding",
};
https://example.com should it be my company?
yes