🇨🇴Information System for Drivers Transporting Dangerous Goods

Service to check if a citizen has training records with SISCONMP (Personnel Control and Monitoring System).

Information System for Drivers Transporting Dangerous Goods

GET - https://api.verifik.co/v2/co/sisconmp/trainings

This service allows you to retrieve training records registered in the SISCONMP (Control and Monitoring System for Personnel) in Colombia. By providing the participant's document number and document type, you can access detailed information about their training. The response includes data such as the document number, document type, participant's full name, educational institution name, training name, expedition and expiration dates, license status, and other relevant details.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Document Type: Allowed values are: CC, CE, PA, RC.

CC

documentNumber

String

True

Driver's document number, without spaces or periods.

123456789

Request

import axios from 'axios';

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

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

Response

{
  "data": {
    "DIVcodigHeadquarters": "11001000",
    "DIVnameHeadquarters": "BOGOTA",
    "NIDHeadquarters": "9131",
    "NIT_educationalInstitution": "901139908",
    "class": "",
    "dateExpedition": "2021/09/11",
    "dateExpeditionLicense": "2016/12/10",
    "descriptionClass": "",
    "documentNumber": "1030644022",
    "documentType": "CC",
    "expirationDate": "2023/09/11",
    "expirationDateLicense": "2026/12/10",
    "inactive": "No",
    "lastName": "URIBE SANCHEZ",
    "licenseNumber": "1030644022",
    "nameFile": "ejemplo",
    "nameHeadquarters": "INSTITUCION DE EDUCACION PARA EL TRABAJO Y EL DESARROLLO HUMANO CORPOIBEROAMERICANA S.A.S",
    "nameTraining": "CURSO BASICO",
    "names": "CHRISTIAN XAVIER",
    "numericalValueClass": "0",
    "typeTraining": "CURSO BASICO",
    "typeVehicle": ""
  },
  "signature": {
    "dateTime": "July 13, 2023 4:05 PM",
    "message": "Certified by Verifik.co"
  }
  
  }

Last updated