Skip to main content

Verify Police Compliance with Corrective Measures

Verify Police Compliance with Corrective Measures​

GET - https://api.verifik.co/v2/co/policia/rnmc

The Police RNMC service allows you to verify whether an individual has any pending corrective measures. By providing the individual's name, document type, document number, and the date of verification, you can obtain details about any corrective measures pending.

This service helps ensure that individuals comply with corrective measures and supports informed decision-making based on their compliance status.

Implementation​

Headers

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Query Parameters

NameTypeRequired?DescriptionExample
documentTypeStringTrueDocument type. Valid parameters: CC, CE.CC
documentNumberStringTrueDocument number of the person to consult, without spaces or points.123456789
dateStringTrueExpedition date of the document. Valid format: DD/MM/YYYY.10/10/2020

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/co/policia/rnmc',
params: {
documentType: 'CC',
documentNumber: '123456789',
date: '10/10/2020'
},
headers: {
Accept: 'application/json',
Authorization: 'jwt <tu_token>'
}
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Response​

{
"data": {
"arrayName": [
"MATEO",
"VERIFIK"
],
"correctiveMeasures": [
{
"attribution": "INSPECTOR DE POLICÍA",
"address": "KR 12 26 25",
"status": "IMPONER O RATIFICAR MEDIDA",
"measure": "Multa General Tipo 2",
"referredTo": "INSPECCION PERMANENTE TURNO 3"
}
],
"date": "22/07/2005",
"documentNumber": "123456789",
"documentType": "CC",
"firstName": "MATEO",
"fullName": "MATEO VERIFIK",
"lastName": "VERIFIK",
"records": [
{
"date": "16/12/2023 01:46:37 p. m.",
"department": "CALDAS",
"file": "17-001-6-2023-20697",
"format": "002",
"identification": "123456789",
"municipality": "MANIZALES",
"offender": "MATEO VERIFIK"
}
]
},
"signature": {
"dateTime": "April 18, 2024 6:33 PM",
"message": "Certified by Verifik.co"
},
"id": "12NC7"
}