Latest Individual and Entity Verification Reports

This release sees the first additions of verification report results to the Public API. We’re starting with the high level results for each of the categories. These relate to the top level “boxes” seen at the top of the verification reports in the First AML Platform.

Individuals

Individual Verification Report
Individual Verification Report

Entities

Entity Verification Report
Entity Verification Report

The following is an example query to return the latest verification reports for each individual and entity on a case.

query VerificationReports($caseId: String!) {
	case: caseDetails(caseId: $caseId) {
		... on CaseInformation {
			caseId
			individuals {
				individualId
				latestVerificationReport {
					fullName
					dateOfBrith
					governmentId
					address
					antiTampering
					biometric
					pep
					sanctions
					generatedOn
				}
			}
			entities {
				entityId
				latestVerificationReport {
					sanctions
					generatedOn
				}
			}
		}
	}
}

If there are additional fields from the Verification Reports you’d like to see available then please reach out.


Getting Started
Authentication
Domain Concepts
API Features
Zapier
Embedded EIV
Help