SISCONMP — 研修・受講記録
エンドポイント
GET https://api.verifik.co/v2/co/sisconmp/trainings
SISCONMP(Sistema de Control y Monitoreo de Personal)で、運送・荷役オペレーター等の研修登録を確認します。参加者の documentType と documentNumber をクエリで送り、教育機関・講座名・交付日・有効期限・免許状態などを取得できます。
ヘッダー
| 名前 | 値 |
|---|---|
| Accept | application/json |
| Authorization | Bearer <token> |
パラメーター
| 名前 | 型 | 必須 | 説明 |
|---|---|---|---|
documentType | string | はい | 証明書種別。CC、CE、PA のいずれか。 |
documentNumber | string | はい | 参加者の証番号(スペース・句点なし)。 |
リクエスト
- 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())
レスポンス
- 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"
}
メモ
- SISCONMP は危険物輸送に関わる要員の管理・モニタリング制度です。
- CURSO BASICO は基礎講座を示す例です。
- 講習証明には有効期限があり、更新が必要な場合があります。
inactive: "No"は当該記録が有効であることを示す例です。