Skip to main content

SISCONMP — 培训与备案记录

端点

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

SISCONMP(人员监控与管理系统)中核验运输与货物从业人员培训备案。通过 查询参数 传入 documentTypedocumentNumber,可返回教育机构、课程名称、签发/有效期、证照状态等。

请求头

名称
Acceptapplication/json
AuthorizationBearer <token>

参数

名称类型必填说明
documentTypestring证件类型:CCCEPA 之一。
documentNumberstring参加者证件号码(无空格和句号)。

请求

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/sisconmp/trainings", {
params: {
documentType: "CC",
documentNumber: "123456789",
},
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

响应

{
"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": {"message": "Certified by Verifik.co", "dateTime": "July 13, 2023 4:05 PM"}
}

说明

  • SISCONMP 针对危险品运输相关人员的管理与监督。
  • CURSO BASICO 为基础课程示例。
  • 培训证明有有效期,可能需要续期。
  • inactive: "No" 表示记录仍有效(示例)。