API Reference

AML Search by Verification

POST https://api.app.authenteq.com/aml/search-by-verification

This endpoint makes the AML search taking the person details from the given identity verification.

A search request in the request body should be represented in JSON and conforms to the following JSON schema:

https://api.app.authenteq.com/aml/search-by-verification-request-schema.json

Headers

Request Body

The AML check has been requested successfully. Please sign in to your account in Amiqus Dashboard and review the result.

{
  "uuid": "b4abfad2-3d9f-11ee-924e-784f4385af2b",
  "searchType": "BY_VERIFICATIOIN",
  "reference": "d364cb70-3cdc-11ee-b43e-784f4385af2b",
  "surname": "DOE",
  "givenNames": "JOHN",
  "dateOfBirth": "1961-08-24",
  "countryCode": "USA",
  "url": "https://id.amiqus.co/clients/123/records/456"
}

AML Search by Person

POST https://api.app.authenteq.com/aml/search-by-person

This endpoint makes the AML seach with the given person details.

A search request in the request body should be represented in JSON and conforms to the following JSON schema:

https://api.app.authenteq.com/aml/search-by-person-request-schema.json

Headers

Request Body

The AML check has been requested successfully. Please sign in to your account in Amiqus Dashboard and review the result.

{
  "uuid": "b4abfad2-3d9f-11ee-924e-784f4385af2b",
  "searchType": "BY_PERSON",
  "reference": "d364cb70-3cdc-11ee-b43e-784f4385af2b",
  "surname": "DOE",
  "givenNames": "JOHN",
  "dateOfBirth": "1961-08-24",
  "countryCode": "USA",
  "url": "https://id.amiqus.co/clients/123/records/456"
}

Both endpoints just start AML search that performs and finishes asynchronously. You will be notified when it's finished and about the result via your webhook. Please contact your Sales Representative to register a webhook for you.

Last updated