Skip to main content
POST
/
api
/
stripe
/
connect
Create Stripe Connect Account
curl --request POST \
  --url https://api.example.com/api/stripe/connect \
  --header 'Content-Type: application/json' \
  --data '
{
  "orgId": "<string>"
}
'

Create Stripe Connect Account

Creates a Stripe Connect Express account for an organization and returns the onboarding URL.

Request Body

orgId
string
required
Organization ID

Response

{
  "accountId": "acct_1234567890",
  "onboardingUrl": "https://connect.stripe.com/setup/e/..."
}
Redirect the organization admin to the onboardingUrl to complete Stripe’s identity verification and bank account setup. This typically takes 2-5 minutes.