Account Holders

account_holders

Methods

Create An Individual Or Business Account Holder -> { token, account_token, status, 4 more... }
post/v1/account_holders

Create an account holder and initiate the appropriate onboarding workflow. Account holders and accounts have a 1:1 relationship. When an account holder is successfully created an associated account is also created. All calls to this endpoint will return a synchronous response. The response time will depend on the workflow. In some cases, the response may indicate the workflow is under review or further action will be needed to complete the account creation process. This endpoint can only be used on accounts that are part of the program that the calling API key manages.

Update Account Holder Information And Possibly Resubmit For Evaluation -> { token, account_token, beneficial_owner_entities, 17 more... } | { token, address, business_account_token, 5 more... }
patch/v1/account_holders/{account_holder_token}

Update the information associated with a particular account holder (including business owners and control persons associated to a business account). If Lithic is performing KYB or KYC and additional verification is required we will run the individual's or business's updated information again and return whether the status is accepted or pending (i.e., further action required). All calls to this endpoint will return a synchronous response. The response time will depend on the workflow. In some cases, the response may indicate the workflow is under review or further action will be needed to complete the account creation process. This endpoint can only be used on existing accounts that are part of the program that the calling API key manages.

Get An Individual Or Business Account Holder ->
get/v1/account_holders/{account_holder_token}

Get an Individual or Business Account Holder and/or their KYC or KYB evaluation status.

Initiate Account Holder Document Upload ->
post/v1/account_holders/{account_holder_token}/documents

Use this endpoint to identify which type of supported government-issued documentation you will upload for further verification. It will return two URLs to upload your document images to - one for the front image and one for the back image.

This endpoint is only valid for evaluations in a PENDING_DOCUMENT state.

Uploaded images must either be a jpg or png file, and each must be less than 15 MiB. Once both required uploads have been successfully completed, your document will be run through KYC verification.

If you have registered a webhook, you will receive evaluation updates for any document submission evaluations, as well as for any failed document uploads.

Two document submission attempts are permitted via this endpoint before a REJECTED status is returned and the account creation process is ended. Currently only one type of account holder document is supported per KYC verification.

Get Account Holder Document Uploads -> { data }
get/v1/account_holders/{account_holder_token}/documents

Retrieve the status of account holder document uploads, or retrieve the upload URLs to process your image uploads.

Note that this is not equivalent to checking the status of the KYC evaluation overall (a document may be successfully uploaded but not be sufficient for KYC to pass).

In the event your upload URLs have expired, calling this endpoint will refresh them. Similarly, in the event a previous account holder document upload has failed, you can use this endpoint to get a new upload URL for the failed image upload.

When a new document upload is generated for a failed attempt, the response will show an additional entry in the required_document_uploads list in a PENDING state for the corresponding image_type.

path Parameters
account_holder_token: string
(format: uuid)
Response fields
data: Array<>
Optional
Request example
200Example
Get Account Holder Document Upload Status ->
get/v1/account_holders/{account_holder_token}/documents/{document_token}

Check the status of an account holder document upload, or retrieve the upload URLs to process your image uploads.

Note that this is not equivalent to checking the status of the KYC evaluation overall (a document may be successfully uploaded but not be sufficient for KYC to pass).

In the event your upload URLs have expired, calling this endpoint will refresh them. Similarly, in the event a document upload has failed, you can use this endpoint to get a new upload URL for the failed image upload.

When a new account holder document upload is generated for a failed attempt, the response will show an additional entry in the required_document_uploads array in a PENDING state for the corresponding image_type.

Get A List Of Individual Or Business Account Holders -> SinglePage<>
get/v1/account_holders

Get a list of individual or business account holders and their KYC or KYB evaluation status.

query Parameters
begin: string
Optional
(format: date-time)

Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.

email: string
Optional

Email address of the account holder. The query must be an exact match, case insensitive.

end: string
Optional
(format: date-time)

Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.

ending_before: string
Optional

A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.

external_id: string
Optional
(format: uuid)

If applicable, represents the external_id associated with the account_holder.

first_name: string
Optional

(Individual Account Holders only) The first name of the account holder. The query is case insensitive and supports partial matches.

last_name: string
Optional

(Individual Account Holders only) The last name of the account holder. The query is case insensitive and supports partial matches.

legal_business_name: string
Optional

(Business Account Holders only) The legal business name of the account holder. The query is case insensitive and supports partial matches.

limit: number
Optional

The number of account_holders to limit the response to.

phone_number: string
Optional

Phone number of the account holder. The query must be an exact match.

starting_after: string
Optional

A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.

Response fields
data: Array<>
has_more: boolean

Whether there are more accounts to be retrieved.

Request example
200getAccountHoldersResponse
Simulate An Account Holder S Enrollment Review -> { token, account_token, beneficial_owner_entities, 17 more... }
post/v1/simulate/account_holders/enrollment_review

Simulates an enrollment review for an account holder. This endpoint is only applicable for workflows that may required intervention such as KYB_BASIC.

Simulate An Account Holder Document Upload S Review ->
post/v1/simulate/account_holders/enrollment_document_review

Simulates a review for an account holder document upload.

Domain types

AccountHolder = { token, created, account_token, 17 more... }
AddressUpdate = { address1, address2, city, 3 more... }
KYB = { beneficial_owner_individuals, business_entity, control_person, 7 more... }
KYBBusinessEntity = { address, government_id, legal_business_name, 3 more... }
KYC = { individual, tos_timestamp, workflow, 2 more... }
KYCExempt = { address, email, first_name, 6 more... }
RequiredDocument = { entity_token, status_reasons, valid_documents }