Create a new customer with explicit onboarding flow selection. Use onboardingFlow: “kyb_link” for third-party verification or onboardingFlow: “direct” for API-managed onboarding.
Includes an API key in the HTTP headers to authenticate the client.
Includes an API secret in the HTTP headers to authenticate the client.
Create Customer Request
The legal name of the business
1The country where the business is located
3direct Basic business information required for customer creation
{
"businessTradeName": "Acme Corp",
"industry": "Technology",
"entityType": "Bank",
"website": "https://acme.com",
"registeredDate": "2024-01-01T00:00:00.000Z",
"email": "[email protected]",
"phone": "+1234567890",
"taxIdentificationNumber": "123456789",
"taxClassification": "LLC",
"businessEntityId": "BE001",
"naicsCode": "NAIS001",
"isFinancialInstitution": false,
"registeredAddress": {
"streetLine1": "123 Business St",
"streetLine2": "Suite 100",
"city": "New York",
"state": "NY",
"postalCode": "10001",
"country": "USA"
},
"operatingAddress": {
"streetLine1": "456 Office Ave",
"city": "New York",
"state": "NY",
"postalCode": "10002",
"country": "USA"
},
"mailingAddress": {
"streetLine1": "789 Mailing Rd",
"city": "New York",
"state": "NY",
"postalCode": "10003",
"country": "USA"
},
"isSubsidiary": false,
"isOperating": true,
"entityTaxedAs": "C-Corporation",
"anticipatedMonthlyVolume": {
"ach": { "incoming": 100000, "outgoing": 80000 },
"wire": { "incoming": 50000, "outgoing": 30000 },
"check": { "incoming": 10000, "outgoing": 5000 }
},
"expectedAverageDailyBalance": 250000,
"regulatorName": "SEC",
"hasAdvisor": true,
"businessDescription": "Provider of industrial widgets and services",
"businessEntityType": "Corporation",
"isStockExchangeListed": false,
"accountPurpose": "Payroll/ Employee Payouts",
"highRiskIndustry": "Third-party / OBO payments",
"hasNestedFlows": true,
"keyGeographicBusinessCountries": ["USA", "CAN"],
"anticipatedTransactionsVolume": 1500,
"usesBlockChainWallets": false,
"sourceOfFunds": "Sales Revenue",
"isGeneratingRevenues": true,
"hasInstitutionalInvestors": true,
"runwayDurationMonths": 12,
"cashOnHandUsd": 500000
}client Customer created successfully
Customer creation response. Response shape depends on the onboardingFlow used in the request.