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:

- Use the
unit21_id
to identify the entity, and add the results as a free form object in thecontent
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"
}'
- After getting a successful response, check the result on the entity's Verifications tab. You should see the new verification result:

Updated 11 months ago