KYC Summary API

This API allows clients to retrieve a list of summary KYC's.

Description: The KYC Summary List API allows clients to retrieve a list of KYC summaries. This list provides an overview of the completed KYC process for each status, including the status of the total verification and any relevant details, such as invalid, declined, and accepted verifications.

Base URL

sdk.faceki.com

Summary KYC List End Point API

https://sdk.faceki.com/kycverify/api/kycverify/kyc-verify-summary

Method: GET

Authorization: Bearer Token

GET https://sdk.faceki.com/kycverify/api/kycverify/kyc-verify-summary

Headers

NameTypeDescription

Content-Type:*

String

application/json

Authorization:*

String

Bearer [token]

    "responseCode": 0,
    "data": [
        {
            "status": "ACCEPTED",
            "total": 20,
            "selfieLinks": [
                "imageLink"
            ]
        },
        {
            "status": "DECLINED",
            "total": 5,
            "selfieLinks": [
                "imageLink"
            ]
        },
        {
            "status": "TIMEOUT",
            "total": 0,
            "selfieLinks": []
        },
        {
            "status": "INVALID",
            "total": 0,
            "selfieLinks": []
        },
        {
            "status": "TOTAL",
            "total": 25,
            "selfieLinks": [
                "imageLink"
            ]
        }
    ]

Last updated