Accepting eKYC Request

The validation method to accept an incoming registering user

Once users have successfully completed the phone call verification process, they will be listed under the page on your dashboard in the Lapis eKYC webpage. This indicates that their eKYC request requires further validation, manually from your end to ensure the authenticity of the user. Once the submitted content are reviewed, please proceed to accept the incoming user registration request by pressing the button located on the bottom of your dashboard. Subsequently, validated users will be moved to the page within the dashboard.

Request Endpoint: /api/accept Request Type: PUT

Header:

{
  "Content-Type": "application/json",
  "Accept": "application/json",
  "x-api-key": "Your API key"
}

x-api-key: The API key you obtained upon signing up for the Lapis eKYC dashboard.

Body:

{"id":"returned ID number"}

id: The request ID you want to accept

Successful Response: Upon successfully accepting KYC request, the API response will resemble the following structure:

Response status: 200

{
    "message": "Kyc request accepted"
}

Error Responses:

  • If the provided API key is invalid, the following error message will be returned. Please ensure that the API key you provide is correct and valid.

Response status: 401

{
    "error": "invalid api key"
}
  • When there is no KYC request with provided ID

Response status: 400

{
    "message": "Kyc request not accepted"
}

Last updated