#elibroftw

1 messages · Page 1 of 1 (latest)

astral sequoiaBOT
#

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.

strange reef
#

OKie I see. When you were creating account, did you use the Create Account API?

halcyon lark
#

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);
strange reef
#

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