Skip to main content

🇨🇴 コロンビア — PEP(特別滞在許可)

エンドポイント

GET https://api.verifik.co/v2/co/foreigner-id/pep

documentNumber と発行日 expeditionDateDD/MM/YYYY)で照会します。同じフィールドの POST JSON にも対応します。

ヘッダー(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

書類要件

対象: Permiso Especial de PermanenciaPEP入国許可を所持するコロンビア在住 ベネズエラ国民 — AML「政治的要人」スクリーニングではありません(コロンビア PEP(AML) を参照)。

フィールドガイド
documentNumberPEP 番号、数字のみ。コロンビアでは 常に 15 桁。空白・句読点なしで 15 桁すべて送信。例:123456789012345
expeditionDate発行日 DD/MM/YYYY(例:10/10/2024)。必須。

一覧比較:身分証明書ガイド

パラメータ(Parameters)

nametyperequireddescription
documentNumberstringyesPEP 番号、数字のみ15 桁(コロンビア固定)。例:123456789012345
expeditionDatestringyes発行日 DD/MM/YYYY(例:10/10/2024)。書類と一致させる。

リクエスト(Request)

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/co/foreigner-id/pep", {
params: { documentNumber: "123456789", expeditionDate: "10/10/2024" },
headers: {
Accept: "application/json",
Authorization: `Bearer ${process.env.VERIFIK_TOKEN}`,
},
});
console.log(data);

レスポンス(Response)

{
"data": {
"documentType": "PEP",
"documentNumber": "123456789012345",
"status": "VIGENTE",
"fullName": "MATEO VERIFIK"
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "August 22, 2023 8:02 PM"
},
"id": "tnlkb"
}

備考(Notes)

  • 日付は DD/MM/YYYY 形式です。
  • GET / POST は同じ処理です。
  • 上流の都合で 404 / 500 になる場合があります。