UDID Verification
Unique Disability ID (UDID) is a alphanumeric number, issued by the Department of Empowerment of Persons with Disabilities, Ministry of Social Justice & Empowerment, Govt. of India., to those who are have Disabilities. UDID Card serves a valid identity proof.
UDID Structure
| Key | Description | 
|---|---|
| Udid Number | It is a alpha-numeric number, with each character representing unique information about the cardholder. | 
| Full Name | Individual Name of the Cardholder | 
| Dob | In the case of a person, the cardholder's date of birth is specified, whereas, in the case of a corporation or corporation, the date of registration is specified. | 
| Gender | |
| Disability Type Pt | 
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"
  }
}