KYC Approval

API that can be used to approve or decline the KYC of a person
Person
KYC Approval
 last updated: 
November 30, 2023

This API can be used to approve or decline the KYC of a person when the KYC status is inReview. The program will need to have operator access granted for the APIs to be available.

ENDPOINT

  1. PATCH /v1/person/:id/kyc

REQUEST

  1. {
  2.   "status": "approved"
  3. }

RESPONSE

  1. {
  2.   "id": "kyc-2af65a27-43ef-4caa-a439-ebcd93f312f0",
  3.   "personId": "per-4c9422af-ed81-45dc-a003-805f3faf37b1",
  4.   "status": "approved",
  5.   "reviewCode": "",
  6.   "reviewMessage": "",
  7.   "results": {
  8.     "idv": "notStarted",
  9.     "address": "approved",
  10.     "dateOfBirth": "approved",
  11.     "fraud": "approved",
  12.     "bank": "approved"
  13.   },
  14.   "createdAt": "2022-09-10T02:11:31Z",
  15.   "modifiedAt": "2022-09-10T02:13:32Z"
  16. }