Backfilling /enroll/consumer Accountholders

To ensure your card program is in compliance with the PATRIOT Act to screen all potentially sanctioned individuals, starting Jan 31, 2023, the /v1/enroll/consumers endpoint will be deprecated and no longer available.

To ensure compliance, please:

  1. Enroll all new users using our /account_holders endpoint. You can find our documentation for this endpoint here.
  2. Backfill all accounts previously created with /v1/enroll/consumers by adding an accountholder. To do so, make a normal POST /account_holders request that also passes the account_token the new accountholder will be associated with. You can find your account_tokenwith a GET request to https://api.lithic.com/v1/accounts. See below for an example request.

Sample Request:

curl --request POST \
     --url https://api.lithic.com/v1/account_holders \
     --header 'Authorization: 2ad218f6-6511-47d1-8e50-b97b95788a3e' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "account_token": "5e86d4eb-5114-433e-a812-a88293e62b69",
  "workflow": "KYC_EXEMPT",
  "address": {
    "address1": "123 Old Forest Way",
    "city": "Omaha",
    "country": "USA",
    "postal_code": "68022",
    "state": "NE"
  },
  "kyc_exemption_type": "AUTHORIZED_USER",
  "business_account_token": "dbd7edce-5144-4cac-97df-961a093cc269",
  "email": "[email protected]",
  "first_name": "John",
  "last_name": "Mason",
  "phone_number": "1234567890"
}
'