Skip to main content
Before processing payments, customers must complete KYB (Know Your Business) onboarding. This guide explains how to integrate Dakota Platform’s onboarding flow.
Looking for detailed onboarding guides? Check out our support articles for step-by-step walkthroughs:

Overview

The onboarding process involves:
  1. Creating a customer record (KYB automatically initiated)
  2. Redirecting customer to complete verification
  3. 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
Response:

Step 2: Application Process (Automatic)

An onboarding application is automatically created when you create a customer. The response includes an application_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_url with 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 the application_url to complete verification using Dakota’s hosted onboarding form. The customer will:
  1. Provide business information and documentation
  2. Add beneficial owners and control persons
  3. Upload required documents (ID, proof of address, etc.)
  4. Accept legal agreements (Terms of Service, Privacy Policy, etc.)
  5. Submit the application for review
  6. 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 reach application_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-level poa_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:
  1. Client API call. Use the standard document-upload endpoint:
    Document type can be proof_of_address, bank_statement, or utility_bill — all three are accepted as PoA-equivalent.
  2. Customer self-serve via the original onboarding link. The link returned in application_url remains 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.
  3. Compliance manual upload. A reviewer with the compliance_documents:manage permission can upload PoA on the customer’s behalf from the compliance dashboard.
Any of these paths transitions the application from 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.
Compliance requirement: Before an application can be submitted, your customer must accept Dakota’s legal agreements. If you are building a custom onboarding flow using the API (rather than the hosted form), you are responsible for presenting these documents to your end users and collecting their consent before submitting 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. The e_sign attestation must be submitted first — all other attestations will be rejected until e-sign consent is recorded.
cURL
JavaScript
Python
  • The timestamp is the Unix epoch time (in seconds) when the user accepted the agreement.
  • The applicant_id is 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_sign attestation 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 the validation include parameter:
The response 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
Response:

KYB Status Values

The kyb_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
Repeated Rejections
  • Ensure document quality meets requirements
  • Consider manual review process
Webhook Not Received
  • Verify webhook endpoint is responding with 200
  • Check webhook signature validation
  • Review webhook logs in dashboard
Any issues not covered here can be addressed by contacting Dakota Platform support.

Next Steps

After successful customer onboarding:
  1. Set up Recipients & Destinations - Configure payment targets
  2. Create Transactions - Process payments for approved customers
  3. Webhook Integration - Get real-time KYB status updates (see the full event list for all available events)
  4. Testing - Test your onboarding flow

API Reference

For detailed endpoint documentation, see: