🇨🇴 SISCONMP — 위험물 운송자 교육 기록
엔드포인트
GET https://api.verifik.co/v2/co/sisconmp/trainings
SISCONMP(Sistema de Control y Monitoreo de Personal)에서 운송·화물 업자 등의 교육 등록을 확인합니다. 참가자 documentType·documentNumber 를 쿼리로 보내 교육기관·과정명·발급·만료·자격 상태 등을 조회합니다.
헤더(Headers)
| Name | Value |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
매개변수(Parameters)
| name | type | required | description |
|---|---|---|---|
documentType | string | yes | 신분증 유형. CC, CE, PA 중 하나. |
documentNumber | string | yes | 참가자 문서 번호(공백·마침표 없음). |
요청(Request)
- Node.js
- Python
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);
import os, requests
url = "https://api.verifik.co/v2/co/sisconmp/trainings"
headers = {"Accept": "application/json", "Authorization": f"Bearer {os.getenv('VERIFIK_TOKEN')}"}
params = {"documentType": "CC", "documentNumber": "123456789"}
r = requests.get(url, headers=headers, params=params)
print(r.json())
응답(Response)
- 200
- 404
- 409
{
"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"}
}
{
"code": "NotFound",
"message": "Record not found."
}
{
"code": "MissingParameter",
"message": "missing documentType. missing documentNumber"
}
참고(Notes)
- SISCONMP는 위험물 운송 인력의 관리·모니터링 제도입니다.
- CURSO BASICO 는 기초 과정 예시입니다.
- 이수 증명에는 유효 기한이 있으며 갱신이 필요할 수 있습니다.
inactive: "No"는 해당 기록이 유효함을 나타내는 예시입니다.