Skip to main content

コロンビア — SENA 証明書

本エンドポイントは、コロンビア国民の SENA(Servicio Nacional de Aprendizaje)研修・認定記録を返します。SENA 公式デジタル証明書ポータルから取得します。各行にはプログラム名、認定種別、発行日、利用可能な場合はデジタル証明書のダウンロード URL が含まれます。

雇用スクリーニングスキル検証教育コンプライアンス確認に利用できます。

返却データ

  • data 内の 証明書行の配列recordtitletypeprogramcertificationDatecertificationSignaturecertificateDownload
  • Verifik 署名付きレスポンス

API リファレンス

エンドポイント

GET https://api.verifik.co/v2/co/sena/certificados

GET のみ。クエリパラメータを使用。

クエリ: documentTypedocumentNumber

ヘッダー

名前
Acceptapplication/json
AuthorizationBearer <token>

パラメーター

nametyperequireddescription
documentTypestringyesCCTICEPARCPEP のいずれか。
documentNumberstringyesスペース・句読点なしの証番号。

リクエスト

import axios from "axios";

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

レスポンス

{
"data": [
{
"record": "1",
"title": "TÉCNICO EN SISTEMAS",
"type": "TITULO",
"program": "ANALISIS Y DESARROLLO DE SOFTWARE",
"certificationDate": "15/06/2019",
"certificationSignature": "SIG-EXAMPLE",
"certificateDownload": "https://certificados.sena.edu.co/CertificadoDigital/cert-example.pdf"
}
],
"signature": {
"dateTime": "January 16, 2024 3:44 PM",
"message": "Certified by Verifik.co"
}
}

機能

  • 証種: CCTICEPARCPEP
  • GET クエリパラメータ
  • 複数の SENA 記録がある場合は 複数行 を返却

ユースケース

  • 技術スキル職業訓練の検証
  • 雇用デューデリジェンス・請負業者オンボーディング
  • SENA 資格が必要な職種の 教育コンプライアンス

備考

  • SENA が証書 なし の場合 404(上流: 「No se ha encontrado certificados」)。
  • サンドボックス: documentNumber 1000000110000010 で固定サンプル、90040401404
  • ミドルウェアは現状 CCNIT のみ検証。カタログの他証種は SENA ポータル依存。
  • ポータル 可用性CAPTCHA は環境依存。5xx の可能性あり。
  • コロンビア法および社内ポリシーに従い 個人・教育 データとして扱ってください。