SISCONMP — Treinamentos transporte de carga perigosa
Ponto de acesso
https://api.verifik.co/v2/co/sisconmp/trainings
Este serviço recupera treinamentos registrados no SISCONMP (sistema de controle de pessoal que transporta carga perigosa) na Colômbia. By providing the participant's document number and document type, you can access detailed information about their training including educational institution, training name, expedition and expiration dates, and license status.
Cabeçalhos
| Nome | Valor |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
Parâmetros
| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
documentType | string | Sim | Tipo de documento. Valores permitidos: CC, CE, PA. |
documentNumber | string | Sim | Número do documento do motorista, sem espaços ou pontos. |
Requisição
- 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())
Resposta
- 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"
}
Notas
- SISCONMP é o sistema colombiano de controle de pessoal que transporta carga perigosa.
- "CURSO BASICO" refers to basic training courses required for dangerous goods transportation.
- Training certificates have specific expiration dates that must be renewed.
- License numbers are typically the same as the document number.
- "inactive: No" indicates the training record is currently active.