#elibroftw
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- elibroftw, 8 hours ago, 3 messages
OKie I see. When you were creating account, did you use the Create Account API?
Yeah I'll post my code too soon
public async Task<Account> CreateStripeAccount(string email, Currency currency) {
var account = await _stripeAccountService.CreateAsync(new AccountCreateOptions {
Type = "standard",
Email = email,
DefaultCurrency = currency.ToString().ToLower()
});
return account;
}
// In createUser()
var account = await CreateStripeAccount(email, currency);
Yeah that's creating Connected Account and by default, a connected account should represent a business partner with you and Stripe. You can have Express Account for a more lightweight version than Standard