List all customer records
Returns a paginated list of customers for the authenticated client. Supports cursor pagination and optional external_id or search filters.
Authorizations
Query Parameters
A cursor for use in pagination. starting_after is a KSUID for the object you are listing that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with ID 2B5J8KZ9N7M1K3P6Q8R4T7V9, your subsequent call can include starting_after=2B5J8KZ9N7M1K3P6Q8R4T7V9 in order to fetch the next page of the list.
KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.
27^[0-9A-Za-z]{27}$"1NFHrqBHb3cTfLVkFSGmHZqdDPi"
A cursor for use in pagination. ending_before is a KSUID for the object you are listing that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with ID 2B5J8KZ9N7M1K3P6Q8R4T7V9, your subsequent call can include ending_before=2B5J8KZ9N7M1K3P6Q8R4T7V9 in order to fetch the previous page of the list.
KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.
27^[0-9A-Za-z]{27}$"1NFHrqBHb3cTfLVkFSGmHZqdDPi"
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
1 <= x <= 100Filter customers by external ID
Search customers by name, email, or customer ID (case-insensitive)
Filter customers by KYB status (single value). Overall status of the KYB verification process (e.g., pending, active, restricted).
active, pending, partner_review, rejected, frozen, auto_declined "pending"
Filter customers by one or more KYB statuses. Comma-separated list (e.g. active,frozen).
Filter customers by one or more effective KYC/B link statuses.
Comma-separated list (e.g. pending,in_review). Values mirror
the KybLinkStatus enum (not_started, pending, in_review,
approved, expired, rejected).
Filter customers by one or more onboarding application statuses.
Comma-separated list (e.g. submitted,under_review). Values
mirror the ApplicationStatus enum. Customers without an
application are excluded when this filter is set.
Filter customers by sub-client association. Returns only customers associated with the specified sub-client. KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.
27^[0-9A-Za-z]{27}$"1NFHrqBHb3cTfLVkFSGmHZqdDPi"
When true, returns only customers that are sub-clients (designated as such at creation). When false or omitted, returns all customers.
Field to sort customers by. Defaults to name.
application_status, created_at, customer_type, id, kyb_status, kyc_status, name Sort direction. Defaults to asc.
asc, desc Filter customers created at or after this ISO 8601 datetime (e.g. 2024-01-01T00:00:00Z).
Filter customers created at or before this ISO 8601 datetime (e.g. 2024-12-31T23:59:59Z).

