Skip to content

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.

const create = yield* Stripe.CreateAccount();
const account = yield* create({
type: "express",
country: "US",
email: "merchant@example.com",
});