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 ๋ช…์นญ์ด ๊ฒน์น  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
  • documentType ์€ CC ๋˜๋Š” NIT ๋งŒ ํ—ˆ์šฉ๋ฉ๋‹ˆ๋‹ค.