Skip to main content
POST
/
billing
/
connect
Provision Stripe Connect account
curl --request POST \
  --url https://api.interchange.io/api/v2/storefront/billing/connect \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "country": "US"
}
'
{
  "stripeConnectedAccountId": "<string>",
  "onboardingUrl": "<string>"
}

Authorizations

Authorization
string
header
required

API key or access token

Body

application/json

Request body for provisioning a Stripe Connect account. The country is required and permanent.

country
string
required

ISO 3166-1 alpha-2 country where the business is legally based, restricted to Stripe-supported payout countries. Permanent once set — it determines the payout currency.

Required string length: 2
Pattern: ^[A-Z]{2}$
Example:

"US"

Response

Provision Stripe Connect account

stripeConnectedAccountId
string
required
onboardingUrl
string
required