Skip to main content
Version: 2.0
Query international records in Interpol through the Verifik provider, using personal identification data of the user to be verified.Available countries: 🇨🇴 Colombia

Configuration

Country
string
required
Variable: country. Country in which the query is performed.Available values: Colombia
Currently the country selector is only enabled for Colombia.
Identification type
string
required
Variable: documentType. Type of identity document, enabled according to the selected country.Available values for Colombia:
  • CC: Cédula de Ciudadanía (Colombian citizens)
  • PEP: Permiso Especial de Permanencia (foreigners, mainly Venezuelan)
  • CE: Cédula de Extranjería (foreign residents in Colombia)
Identification number
string
required
Variable: documentNumber. Identity document number of the person to query.

Integration

1

Capture the user's data

Collect the country, document type, and identification number from the user in your flow.
Use the Question node or user variables to capture this information.
2

Configure the parameters

Assign the captured values to the tool’s required parameters:
  • country: Query country
  • documentType: Document type according to the country
  • documentNumber: Identification number
3

Handle the outputs

Implement different flows based on the result:
  • ✅ No criminal record: Continue the normal process
  • 🔴 Errors: Implement retries, validations, or notify the user
4

Store the results

Save the response in memory variables to use in subsequent flow decisions.
// Example: Check whether the person has a criminal record
if (response.data.foundInInterpol === true) {
  // Flow for persons with criminal record
} else {
  // Flow for persons without criminal record
}

Additional information

Country dependency: the available identification type depends on the country you select in the query. Provider response: the query result depends directly on the information returned by the Verifik provider. Result interpretation: distinguish between no criminal record (person verified without a criminal record) and no records (person not found in the system).