Driving License

This extraction can be used to verify the identity of the user and ensure that they are not attempting to use a false identity.

Submit Document

ind_driving_license_ocr

POST https://secctrl.tutelar.io/api/v1/kyc/vision/ind_driving_license_ocr

Post parameters description is given below,

Post Parameter TypeIs MandatoryDescription

front_side

String

Yes

Image Url

back_side

String

No

Image Url

Sample Post Parameters

{
    "front_side": "Base64 or Url",
    "back_side": "Base64 or Url"
}
{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "4f23ca21-7399-42e5-be4f-c648b430df46",
    "status": "completed",
    "result": {
        "document_number": "TN0020160000762",
        "name_on_document": "VINAYAGAMOORTHY.T",
        "fathers_name": "THANGARAJ",
        "date_of_birth": "1997-12-13",
        "address": "ARR 6518",
        "state": "TamilNadu",
        "date_of_validity": "2036-02-08",
        "issue_dates": "09/02/2016",
        "type": []
    },
    "requested_at": "2024-04-22T06:49:40.058Z",
    "completed_at": "2024-04-22T06:49:42.896Z"
}

Check Document Status

Get document details

GET https://secctrl.tutelar.io/api/v1/kyc/vision/ind_driving_license_ocr

Query parameters description is given below,

Query Parameter TypeIs MandatoryDescription

reference_id

String

Yes

Document reference id

{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "4f23ca21-7399-42e5-be4f-c648b430df46",
    "status": "completed",
    "result": {
        "document_number": "TN0020160000762",
        "name_on_document": "VINAYAGAMOORTHY.T",
        "fathers_name": "THANGARAJ",
        "date_of_birth": "1997-12-13",
        "address": "ARR 6518",
        "state": "TamilNadu",
        "date_of_validity": "2036-02-08",
        "issue_dates": "09/02/2016",
        "type": []
    },
    "requested_at": "2024-04-22T06:49:40.058Z",
    "completed_at": "2024-04-22T06:49:42.896Z"
}

Last updated