You need to pass the businessId in the request object only if you create a business checking account. If you create a personal checking account, the personId is already included in the header.
During the account creation, it is your responsibility to present an option for the user to accept the Terms, after which you should set acceptedTerms as true in the request body. Learn more about Account Types.
ENDPOINT
- POST /v1/account
REQUEST
- {
- "businessId": "{{businessId}}",
- "label": "Primary",
- "acceptedTerms": true,
- "type": "businessChecking"
- }
RESPONSE
- {
- "id": "acc-63d656eb-fedc-4250-8111-48a5ff0faed9",
- "businessId": "bus-0fc3d3cb-f2bf-407b-8377-77acc57f5ea6",
- "label": "Primary",
- "routingNumber": "084106768",
- "accountNumber": "9990001157174403",
- "status": "active",
- "type": "businessChecking",
- "programId": "prg-b9f17601-4717-460e-bda5-9598f6f6db28",
- "isVerified": false,
- "verifiedAt": "",
- "acceptedTerms": true,
- "interest": "0.50",
- "fees": "0.00",
- "currency": "USD",
- "availableBalance": "1000.00",
- "sponsorBankName": "Evolve",
- "createdAt": "2021-12-15T21:20:33Z",
- "modifiedAt": "2021-12-15T21:20:33Z",
- "pendingDebit": "0.00",
- "pendingCredit": "0.00",
- "createdPersonId": "per-3ebfa3d2-5d36-411d-984a-9e3a328011c5",
- "accountInterestFrequency": "annual",
- "metadata": null,
- "config": {
- "card": {
- "virtual": {
- "enabled": true,
- "count": "1000"
- },
- "physical": {
- "enabled": true,
- "count": "100"
- }
- },
- "send": {
- "intrabank": {
- "enabled": true
- },
- "ach": {
- "enabled": true,
- "sameDay": false
- },
- "wire": {
- "enabled": true
- },
- "check": {
- "enabled": true
- },
- "card": {
- "enabled": true
- },
- "debitCard": {
- "enabled": false
- }
- },
- "receive": {
- "intrabank": {
- "enabled": true
- },
- "ach": {
- "enabled": true,
- "sameDay": false
- },
- "check": {
- "enabled": true
- },
- "debitCard": {
- "enabled": false
- }
- },
- "limits": {
- "send": {
- "daily": "2000.00",
- "monthly": "300000.53"
- },
- "receive": {
- "daily": "4000000.00",
- "monthly": "12000000.00"
- }
- },
- "fallback": {
- "originated": null,
- "received": null
- }
- }
- }
-