Customer Data Pull

This API allows a business to extract customer information using mobile number and name

📘

UAT Test Data

Real user data is only available in the production environment. In order to properly evaluate Decentro's Financial Services module on the staging / UAT environment, consider using our UAT test data linked here.

Decentro provides the capability for businesses to fetch data of their customers using mobile number and full name to simplify onboarding and reduce drop-offs.

Please note that not always the customer might be found in our database.

Fetch Customer Details using mobile number and full name

{
    "reference_id": "ABCDEF12345",
    "consent": true,
    "consent_purpose": "for bank verification only",
    "name": "Manish Gupta",
    "mobile": "8122444434",
    "inquiry_purpose": "PL"
}
"decentroTxnId": "5296XXXXXXXXXXXXXXXXXXXXXXXXXXXX",
    "status": "SUCCESS",
    "responseCode": "S00000",
    "message": "PreFill Details fetched successfully",
    "data": {
        "personalInfo": {
            "fullName": "Joe Joseph ",
            "dob": "1989-01-01",
            "gender": "Male",
            "totalIncome": "43001",
            "occupation": "",
            "age": "23"
        },
        "phoneInfo": [
            {
                "seq": "1",
                "typeCode": "H",
                "reportedDate": "2017-07-31",
                "number": "xxxxxxxxxx"
            },
            {
                "seq": "2",
                "typeCode": "H",
                "reportedDate": "2017-11-30",
                "number": "xxxxxxxxxx"
            }
        ],
        "emailInfo": {
            "seq": "1",
            "reportedDate": "2017-06-30",
            "emailAddress": "[email protected]"
        },
        "identityInfo": {
            "panNumber": [
                {
                    "seq": "1",
                    "idNumber": "ABCDE1234F"
                }
            ],
            "passportNumber": [
                {
                    "seq": "1",
                    "reportedDate": "2020-10-31",
                    "idNumber": "K1234567"
                }
            ],
            "drivingLicense": [
                {
                    "seq": "1",
                    "reportedDate": "2017-06-30",
                    "idNumber": "AC20200653744"
                }
            ],
            "voterId": [
                {
                    "seq": "1",
                    "reportedDate": "2015-07-31",
                    "idNumber": "JJM2864304"
                }
            ],
            "aadhaarNumber": [
                {
                    "seq": "1",
                    "reportedDate": "2017-11-30",
                    "idNumber": "XXXXXXXX4875"
                }
            ],
            "rationCard": [],
            "otherId": []
        },
        "addressInfo": [
            {
                "seq": "1",
                "reportedDate": "2017-11-30",
                "address": "JINDAL LABOUR COLONY HISAR HIND PUBLIC SCHOOLCUS AVENUE",
                "state": "WEST BENGAL",
                "postal": "700017",
                "type": "Primary"
            },
            {
                "seq": "2",
                "reportedDate": "2017-07-31",
                "address": "JINDAL LABOUR COLONY  HISAR HIND PUBLIC SCHOOL",
                "state": "HARYANA",
                "postal": "125001",
                "type": ""
            }
        ]
    }
}