Unsupported Partners

If your organization prefers to run KYC checks from an unsupported ID partner, you can upload the results through the Unit21 API endpoint to add external verification results.

This endpoint has a content field that accepts any data you send (as long as it's JSON format).

Here is an example of entity Jerri Hogarth with id: 562705863. Follow the instructions to add external KYC results:

1600
  1. Use the unit21_id to identify the entity, and add the results as a free form object in the content field.
curl -X POST \
  https://<API_ENDPOINT>/v1/entities/562705863/link-verification-result \
  -H 'Content-Type: application/json' \
  -H 'u21-key: <YOUR_API_KEY>' \
  -d '{
    "content": {"License": "FAILED"},
    "verification_type": "DOC_VERIFICATION",
    "provider_name": "FAKE_PROVIDER"
    }'
  1. After getting a successful response, check the result on the entity's Verifications tab. You should see the new verification result:
1600