For the complete documentation index, see llms.txt. This page is also available as Markdown.

Mobile To UAN

The Mobile to UAN (Universal Account Number) API provides the mobile number with UAN and retrieve transaction ID associated with specific UAN.

mobile_uan

POST https://secctrl.tutelar.io/api/v1/kyc/banking/mobile_uan

Post parameters description is given below,

Post Parameter
Type
Is Mandatory
Description

mobile_number

String

Yes

Mobile Number

Sample Post Parameters

{
 "mobile_number": "8098125195"
}
{
    "success": true,
    "code": 200,
    "status": "completed",
    "reference_id": "a5329996-9c32-4528-839c-a2c1d01d3adf",
    "result": {
        "uan": "101831710449",
        "txnId": "7e3be1db-8a5a-4621-b591-c82b14e7518f"
    },
    "requested_at": "2024-03-07T07:31:36.763Z",
    "completed_at": "2024-03-07T07:31:37.885Z"
}

Last updated