Descripción

El servicio de RNMC Policial permite verificar si una persona tiene medidas correctivas pendientes. Al proporcionar el nombre, tipo y número de documento, así como la fecha de expedición, puedes obtener detalles sobre cualquier medida correctiva pendiente.

Este servicio facilita la verificación del cumplimiento de medidas correctivas y ayuda a tomar decisiones informadas basadas en el estado de cumplimiento de la persona.

Para hacer uso de este servicio en una interfaz gráfica te invitamos a ingresar a nuestro client panel de Verifik.

Parámetros

Nombre Tipo ¿Requerido? Descripción Ejemplo
documentType String True Tipo de documento. Parámetros válidos: CC, CE. CC
documentNumber String True Número de documento de la persona a consultar. 123456789
date String True Fecha de expedición del documento a consultar. Formato Válido: DD/MM/YYYY. 10/10/2020

Implementación

Consulta

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 {
 notFou const { data } = await axios.request(options);
  console.log(data);
} catch (error) {
  console.error(error);
}

Respuesta 200 - (Consulta exitosa)

{
    "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"
            },
            {
                "date": "06/06/2022 05:33:02 p. m.",
                "department": "CALDAS",
                "file": "17-001-6-2022-13948",
                "format": "002",
                "identification": "123456789",
                "municipality": "MANIZALES",
                "offender": "MATEO VERIFIK"
            },
            {
                "date": "25/02/2022 11:09:17 a. m.",
                "department": "CALDAS",
                "file": "17-001-6-2022-5921",
                "format": "002",
                "identification": "123456789",
                "municipality": "MANIZALES",
                "offender": "MATEO VERIFIK"
            },
            {
                "date": "21/01/2022 05:28:13 p. m.",
                "department": "CALDAS",
                "file": "17-001-6-2022-1929",
                "format": "002",
                "identification": "123456789",
                "municipality": "MANIZALES",
                "offender": "MATEO VERIFIK"
            },
            {
                "date": "11/03/2021 01:13:45 p. m.",
                "department": "CALDAS",
                "file": "17-001-6-2021-3865",
                "format": "002",
                "identification": "123456789",
                "municipality": "MANIZALES",
                "offender": "MATEO VERIFIK"
            }
        ]
    },
    "signature": {
        "dateTime": "April 18, 2024 6:33 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "12NC7"
}

Otras respuestas

Code Descripción Response Body
404 Not Found Información no encontrada {
"code": "NotFound",
"message": "Record not found.",
"signature": {
"dateTime": "August 31, 2022 3:24 PM",
"message": "Certified by Verifik.co"
}
}
409 Conflict Hace falta suministrar algún parámetro. {
"code": "MissingParameter",
"message": "missing documentType\n. missing documentNumber\n"
}
409 Conflict documentType inválido para esta consulta. {
"code": "MissingParameter",
"message": "documentType must be one of: [CC,CE]"
}