Mobile to PAN HyperStream

The Mobile to PAN Hyperstream takes the minimum possible input from the user, i.e., the phone number to fetch the PAN number from the Credit Bureau source.

📘

This API works best in production environment.

Due to the nature of the underlying APIs such as Credit Bureau, this API works best in the production environment where there are considerably higher data points to work with.

Sample Request & Response

{
    "reference_id": "XXXXXXXXXXX",
    "consent": true,
    "consent_purpose": "A Valid Consent purpose",
    "hyperstream": "MOBILE_TO_PAN",
    "initial_input": {
        "mobile_number": "0123456789"
    }
}
{
    "hyperstream_txn_id": "XXXXXXXXXXXXXXX",
    "status": "SUCCESS",
    "http_status_code": 200,
    "response_key": "success_hyperstream",
    "data": {
        "DATA_PULL_TO_PAN": {
            "mobile_number": "0123456789",
            "full_name": "JOHN DOE",
            "id_number": "ABCDE9999A"
        }
    },
    "message": "Successfully Completed Hyperstream",
    "reference_id": "XXXXXXXXXXXXXXXXX"
}