Looking for detailed onboarding guides? Check out our support articles for step-by-step walkthroughs:
Overview
The onboarding process involves:- Creating a customer record (KYB automatically initiated)
- Redirecting customer to complete verification
- Monitoring KYB status via API or webhooks
Step 1: Create a Customer
First, create a customer record with basic business information.Customer Creation Fields
Request Example
cURL
JavaScript
Python
Go
Rust
Java
Step 2: Application Process (Automatic)
An onboarding application is automatically created when you create a customer. The response includes anapplication_url that you can use to redirect your customer to Dakota’s hosted onboarding form.
Automatic Application Creation
When you create a customer, the system automatically:- Creates an onboarding application
- Generates a secure
application_urlwith an embedded token - Sets the initial application status to
"pending"
Response Fields
The customer creation response includes:Using the Application URL
From the customer creation response, extract the onboarding URL:Step 3: Handle the Onboarding Flow
Direct your customer to theapplication_url to complete verification using Dakota’s hosted onboarding form. The customer will:
- Provide business information and documentation
- Add beneficial owners and control persons
- Upload required documents (ID, proof of address, etc.)
- Accept legal agreements (Terms of Service, Privacy Policy, etc.)
- Submit the application for review
- Receive approval or requests for additional information
Proof of Address for Individual Customers
For individual customer onboarding, Proof of Address (PoA) is not strictly required to complete onboarding. An individual can submit identity documents alone and reachapplication_status: submitted without uploading PoA.
However, PoA is required for a customer to transact more than $3,000 in any rolling 7-day window. Customers who cross that threshold without an approved PoA on file are frozen — inbound transactions over the limit are held in compliance review until they provide one. Encourage customers to upload PoA at onboarding when possible; the field is presented with a note explaining the threshold rather than as a low-priority optional step.
PoA State
The application-levelpoa_status field on GET /applications/{id} exposes the current review state for individual customers:
Three Ways to Submit PoA After Onboarding
If a customer didn’t upload PoA at onboarding but later needs to:-
Client API call. Use the standard document-upload endpoint:
Document type can be
proof_of_address,bank_statement, orutility_bill— all three are accepted as PoA-equivalent. -
Customer self-serve via the original onboarding link. The link returned in
application_urlremains valid for 90 days after creation. When a previously-approved individual reopens it, the form locks every already-approved field and exposes only the PoA upload, so the customer can submit a PoA without re-attesting or re-entering personal data. -
Compliance manual upload. A reviewer with the
compliance_documents:managepermission can upload PoA on the customer’s behalf from the compliance dashboard.
completed to compliance_review (or to submitted_pending_review at the PoA level if the app hasn’t yet been decided) and emits a customer.kyb_status.updated webhook with reason_code: pending_proof_of_address. Once compliance reviews, the customer receives a follow-up event with reason_code: proof_of_address_approved or proof_of_address_rejected.
See State lifecycles → Proof of Address State for the full set of transitions, and Webhooks → Customer Events for the corresponding event payloads.
Legal Agreements & Attestations
During onboarding, the following legal agreements must be presented and accepted:Submitting Attestations via API
If you are using the API to build a custom onboarding experience, you must submit attestations using the Submit Attestation endpoint. Thee_sign attestation must be submitted first — all other attestations will be rejected until e-sign consent is recorded.
cURL
JavaScript
Python
- The
timestampis the Unix epoch time (in seconds) when the user accepted the agreement. - The
applicant_idis the individual making the attestation. For business applications, this must be a control person. For individual applications, this must be the individual themselves. - Each attestation’s timestamp must be strictly after the
e_signattestation timestamp — equal timestamps will be rejected. - All 6 attestation types are required before an application can be submitted.
Checking Missing Attestations
You can check which attestations are still needed by retrieving the application with thevalidation include parameter:
validation.attestations field shows completed and missing attestations:
Using the hosted onboarding form? If you redirect customers to the
application_url, Dakota’s hosted form handles presenting all legal agreements and collecting attestations automatically. You only need to manage attestations manually if you are building a custom onboarding UI.Step 4: Monitor Application Status
Check onboarding status programmatically:cURL
JavaScript
Python
Go
Rust
Java
KYB Status Values
Thekyb_status field indicates the customer’s verification status:
You can also check the application status directly via the Get Application endpoint for more detailed status information.
Best Practices
User Experience
- Clearly communicate the onboarding requirements
- Provide progress indicators
- Set expectations for processing time
- Offer support contact information
Error Handling
- Handle rejection gracefully
- Provide clear next steps
- Allow customers to restart if needed
- Log all onboarding events
Compliance
- Present all required legal agreements (ToS, Privacy Policy, etc.) to end users before collecting attestations
- Record the exact timestamp when each agreement was accepted
- Store audit trails
- Monitor for suspicious activity
- Keep records for compliance reporting
- Regular review of rejected applications
Required Documents
Typical documents required for business verification:- Certificate of Incorporation
- Bank Statements
- Director/Officer Identification
- Beneficial Ownership Information
Troubleshooting
Common Issues
Onboarding Stuck in “Pending”- Check if customer has accessed the onboarding URL
- Ensure document quality meets requirements
- Consider manual review process
- Verify webhook endpoint is responding with 200
- Check webhook signature validation
- Review webhook logs in dashboard
Next Steps
After successful customer onboarding:- Set up Recipients & Destinations - Configure payment targets
- Create Transactions - Process payments for approved customers
- Webhook Integration - Get real-time KYB status updates (see the full event list for all available events)
- Testing - Test your onboarding flow
API Reference
For detailed endpoint documentation, see:- Customers API Reference - Customer creation and management
- Webhooks API Reference - Real-time onboarding notifications

