Skip to main content

🇨🇴 コロンビア — PEP 検索(AML)

エンドポイント

GET https://api.verifik.co/v2/co/politically-exposed-persons

AML向けの政治的露出者(PEP)照会です。移民のPEP(特別滞在許可)とは別です — コロンビア PEP(特別滞在) を参照。

ヘッダー(Headers)

NameValue
Acceptapplication/json
AuthorizationBearer <token>

パラメータ(Parameters)

nametyperequireddescription
documentTypestringyesCC(個人)または NIT(法人)。
documentNumberstringyes空白・句読点なしの番号。

リクエスト(Request)

import axios from "axios";

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

レスポンス(Response)

{
"data": {
"documentType": "CC",
"documentNumber": "123456789",
"detail": []
},
"signature": {
"message": "Certified by Verifik.co",
"dateTime": "August 22, 2023 8:02 PM"
},
"id": "PEP001"
}

備考(Notes)

  • PEP(AML) と移民 PEP は別サービスです。
  • documentTypeCC / NIT のみです。