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>

パラメータ(Parameters)

nametyperequireddescription
documentNumberstringyes空白・句読点なしの PEP 番号。
expeditionDatestringyes発行日 DD/MM/YYYY

リクエスト(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 になる場合があります。