Skip to main content

🇨🇴 コロンビア — PPT(一時保護許可)

エンドポイント

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

documentNumber と発行日 expeditionDateDD/MM/YYYY)が必要です。POST でも同じフィールドを JSON で送れます。

ヘッダー(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

パラメータ(Parameters)

nametyperequireddescription
documentNumberstringyesスペースなしの PPT 番号。
expeditionDatestringyes発行日 DD/MM/YYYY

リクエスト(Request)

import axios from "axios";

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

レスポンス(Response)

{
"data": {
"documentType": "PPT",
"documentNumber": "2081381",
"status": "VIGENTE",
"fullName": "JUAN MIGUEL CAMERO MORALES"
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "May 13, 2025 11:52 PM"
},
"id": "JD24J"
}

備考(Notes)

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