Skip to main content

UDID Verification

Unique Disability ID (UDID) is an alphanumeric number, issued by the Department of Empowerment of Persons with Disabilities, Ministry of Social Justice & Empowerment, Govt. of India, to those who have Disabilities. UDID Card serves as a valid identity proof.

UDID Structure

KeyDescription
Udid NumberIt is a alpha-numeric number, with each character representing unique information about the cardholder.
Full NameIndividual Name of the Cardholder
DobThe cardholder's date of birth
GenderGender of the cardholder (Male/Female/Transgender)
Disability Type PtType code indicating the nature of the disability (e.g. P for Physical)

API Integration

UDID verification can be performed using the Verify UDID API

Direct

Request

{
"applicationNumber": "OD26116200900XXXXX",
"dob": "XX-XX-XXXX"
}

Response

If the UDID is valid

{
"code": 0,
"message": "Success",
"data": {
"applicationNumber": "21260000018XXXXXXX",
"udidNumber": "OD2611XXXXXXX",
"fullNameI18n": "ହିତେଶ XXXXXXX",
"fullName": "XXXXXXX XXXXXXX",
"fatherName": "XXXXXXX XXXXXXX XXXXXXX",
"dob": "XXXX-XX-11",
"gender": "Male",
"mobile": "XXXXXXXXXX",
"email": "XXXX",
"aadhaarNo": "XXXXXXX",
"currentAddress": "At-XXX Pada Po-XXXX Ps-XXXX",
"currentPincode": 766001,
"disabilityTypeId": "XXX",
"pwdCardExpiryDate": "XXX",
"applicationStatus": 13,
"rejectRemark": "XXXXX",
"disabilityTypePt": "P",
"disabilityConditionCategory": "Permanent",
"disabilityTypes": "Thalassemia",
"finalDisabilityPercentage": 50,
"certificateGenerateDate": "XXXX-07-02",
"pwdapplicationstatus": "UDID card has been surrendered",
"subdistrict": "XXX",
"district": "XXXX",
"state": "XXXX",
"hospital": {
"name": "XXXX",
"state": "XXX",
"district": "Kalahandi"
},
"photo": "Base 64 Image"
}
}

If the UDID is invalid

{
"code": 0,
"message": "Invalid UDID",
"data": {
"status": "INVALID",
"reason": "Invalid UDID"
}
}