CreateAccount
Source:
src/Stripe/CreateAccount.ts
Create a Stripe Connect Account over HTTP. Account-scoped — binds the API key onto the host, not a specific connected account.
Creating an Account at runtime
Section titled “Creating an Account at runtime”const create = yield* Stripe.CreateAccount();const account = yield* create({ type: "express", country: "US", email: "merchant@example.com",});