Aadhaar Card

This API helps you fetch the Digilocker-verified documents for your customers. End users need not have a Digilocker account in advance to fetch the documents. If an individual does not have a Digilocker account, we will create an account on the go and fetch the documents. Experience for both types of customers will be exactly the same.

Submit Document

ind_aadhaar

POST https://secctrl.tutelar.io/api/v1/kyc/identity/ind_aadhaar

Post parameters description is given below,

Post Parameter
Type
Is Mandatory
Description

callback_url

String

Yes

Client webhook URL, where client will receive the event response once the process is completed.

redirect_url

String

No

URL where you want the client to get redirected after completion of digilocker journey Default Value: "https://tutelar.io/"

Sample Post Parameters

{
    "callback_url": "https://secctrl.tutelar.io/api/v1/callback",
    "redirect_url":"https://tutelar.io/"
}
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Enter a valid callback URL",
        "field": "callback_url",
        "code": "BAD_REQUEST"
    }
}

{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Enter a valid redirect URL",
        "field": "redirect_url",
        "code": "BAD_REQUEST"
    }
}

Check Document Status

Get document details

GET https://secctrl.tutelar.io/api/v1/kyc/identity/ind_aadhaar

Query parameters description is given below,

Query Parameter
Type
Is Mandatory
Description

reference_id

String

Yes

Document reference id

Last updated