Get the Results

Retrieving Reports Details

Retrieving the list of Reports that belong to the same checkId

Retrieving all the reports

Retrieving all the reports related to the checkId.

curl --location --request GET 'https://{baseUrl}/kyc/1.0/checks/{checkId}/reports' \
--header 'apikey: {{apikey}}' \
--header 'X-User-Bearer: Bearer  {{access_token}}' \
[
    {
        "creationDate": "2021-12-21T16:09:00.4Z",
        "checkId": 368,
        "entityId": "1000",
        "declinedReason": null,
        "declinedCodes": [],
        "resultSumary": {
            "reportType": "document_ocr",
            "sources": [
                {
                    "sourceId": 1,
                    "sourceType": "DOCUMENT"
                },
                {
                    "sourceId": 2,
                    "sourceType": "DOCUMENT"
                },
                {
                    "sourceId": 3,
                    "sourceType": "FACE"
                }
            ],
            "reportId": 374,
            "subResult": "passed"
        },
        "verificationData": {
            "document": {
                "name": {
                    "first_name": "JUAN MANUEL",
                    "last_name": "PEREZ"
                },
                "dob": "1983-10-07",
                "expiry_date": "2036-12-19",
                "issue_date": "2020-12-19",
                "document_number": "10327061",
                "gender": "M",
                "face_match_confidence": 78,
                "selected_type": [
                    "id_card"
                ],
                "supported_types": [
                    "driving_license",
                    "id_card",
                    "credit_or_debit_card",
                    "passport"
                ]
            }
        },
        "additionalData": {
            "document": {
                "proof": {
                    "face": "96,162,370,475",
                    "last_name": "PEREZ",
                    "document_number": "10327061",
                    "nationality": "ARGENTINA",
                    "signature": "743,308,909,425",
                    "dob": "1983-10-07",
                    "first_name": "JUAN MANUEL",
                    "issue_date": "2020-12-19",
                    "expiry_date": "2036-12-19",
                    "gender": "M",
                    "document_country": "Argentina",
                    "document_country_code": "AR"
                }
            }
        },
        "verificationResult": {
            "face": 1,
            "document": {
                "document": 1,
                "document_proof": 1,
                "gender": 1,
                "document_number": 1,
                "name": 1,
                "dob": 1,
                "issue_date": 1,
                "expiry_date": 1,
                "selected_type": 1,
                "document_must_not_be_expired": 1,
                "document_visibility": 1,
                "face_on_document_matched": 1
            }
        }
    }
]

Retrieving a single report

Retrieving a single Report based on the checkId and reportId.

curl --location --request GET 'https://{baseUrl}/kyc/1.0/checks/{checkId}/reports/{reportId}' \
--header 'apikey: {{apikey}}' \
--header 'X-User-Bearer: Bearer  {{access_token}}' \
   {
        "creationDate": "2021-12-21T16:09:00.4Z",
        "checkId": 368,
        "entityId": "1000",
        "declinedReason": null,
        "declinedCodes": [],
        "resultSumary": {
            "reportType": "document_ocr",
            "sources": [
                {
                    "sourceId": 1,
                    "sourceType": "DOCUMENT"
                },
                {
                    "sourceId": 2,
                    "sourceType": "DOCUMENT"
                },
                {
                    "sourceId": 3,
                    "sourceType": "FACE"
                }
            ],
            "reportId": 374,
            "subResult": "passed"
        },
        "verificationData": {
            "document": {
                "name": {
                    "first_name": "JUAN MANUEL",
                    "last_name": "PEREZ"
                },
                "dob": "1983-10-07",
                "expiry_date": "2036-12-19",
                "issue_date": "2020-12-19",
                "document_number": "10327061",
                "gender": "M",
                "face_match_confidence": 78,
                "selected_type": [
                    "id_card"
                ],
                "supported_types": [
                    "driving_license",
                    "id_card",
                    "credit_or_debit_card",
                    "passport"
                ]
            }
        },
        "additionalData": {
            "document": {
                "proof": {
                    "face": "96,162,370,475",
                    "last_name": "PEREZ",
                    "document_number": "10327061",
                    "nationality": "ARGENTINA",
                    "signature": "743,308,909,425",
                    "dob": "1983-10-07",
                    "first_name": "JUAN MANUEL",
                    "issue_date": "2020-12-19",
                    "expiry_date": "2036-12-19",
                    "gender": "M",
                    "document_country": "Argentina",
                    "document_country_code": "AR"
                }
            }
        },
        "verificationResult": {
            "face": 1,
            "document": {
                "document": 1,
                "document_proof": 1,
                "gender": 1,
                "document_number": 1,
                "name": 1,
                "dob": 1,
                "issue_date": 1,
                "expiry_date": 1,
                "selected_type": 1,
                "document_must_not_be_expired": 1,
                "document_visibility": 1,
                "face_on_document_matched": 1
            }
        }
    }