Create
Create an individual or business account holder
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.
Body Parameters
Returns
Globally unique identifier for the account holder.
Globally unique identifier for the account.
KYC and KYB evaluation states.
Note:
PENDING_REVIEW
is only applicable for theKYB_BASIC
workflow.
Reason for the evaluation status.
Timestamp of when the account holder was created.
Customer-provided token that indicates a relationship with an object outside of the Lithic ecosystem.
Only present for "KYB_BASIC" workflow. A list of documents required for the account holder to be approved.
curl https://api.lithic.com/v1/account_holders \
-H 'Content-Type: application/json' \
-H "Authorization: $LITHIC_API_KEY" \
-d '{
"beneficial_owner_individuals": [
{
"address": {
"address1": "123 Old Forest Way",
"city": "Omaha",
"country": "USA",
"postal_code": "68022",
"state": "NE"
},
"dob": "1991-03-08 08:00:00",
"email": "tom@middle-earth.com",
"first_name": "Tom",
"government_id": "111-23-1412",
"last_name": "Bombadil"
}
],
"business_entity": {
"address": {
"address1": "123 Old Forest Way",
"city": "Omaha",
"country": "USA",
"postal_code": "68022",
"state": "NE"
},
"government_id": "114-123-1513",
"legal_business_name": "Acme, Inc.",
"phone_numbers": [
"+15555555555"
]
},
"control_person": {
"address": {
"address1": "123 Old Forest Way",
"city": "Omaha",
"country": "USA",
"postal_code": "68022",
"state": "NE"
},
"dob": "1991-03-08 08:00:00",
"email": "tom@middle-earth.com",
"first_name": "Tom",
"government_id": "111-23-1412",
"last_name": "Bombadil"
},
"nature_of_business": "Software company selling solutions to the restaurant industry",
"tos_timestamp": "2018-05-29T21:16:05Z",
"workflow": "KYB_BASIC",
"kyb_passed_timestamp": "2018-05-29T21:16:05Z",
"website_url": "www.mybusiness.com"
}'
{
"token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"account_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"status": "ACCEPTED",
"status_reasons": [
"ADDRESS_VERIFICATION_FAILURE"
],
"created": "2019-12-27T18:11:19.117Z",
"external_id": "external_id",
"required_documents": [
{
"entity_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"status_reasons": [
"string"
],
"valid_documents": [
"string"
]
}
]
}