Driver's License
Verify a drivers license
With our Ghanaian Drivers' licence endpoint, businesses can quickly and easily validate the authenticity of a customer's driver's license, ensuring that the person presenting the license is who they claim to be.
Using our driver's license endpoint involves integrating with our API that allows you to connect to the endpoint and send information about the customer's license. The endpoint will then analyze the information and provide a response indicating whether or not the license is valid.
The process of validating a license with a driver's license endpoint typically involves collecting the necessary information from the customer's license, such as their name, date of birth, and license number. You can then send this information to the endpoint via the API and get accurate results.
TEST DATA
number: 12345678909
dob: 1999-11-13
POST
{{URL}}/identitypass/verification/gh/drivers_license
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
number | License number |
dob | [yyyy-MM-dd] |
Sample Response
{
"status": true,
"detail": "Drivers License Information Retrieved",
"response_code": "00",
"data": {
"Name": "OSEI YAW",
"DateOfBirth": "07/10/1969",
"ProcessingCenter": "AS5",
"ClassOfLicence": "A",
"Nationality": "GHANIAN",
"DateOfIssue": "13/12/2016",
"ExpiryDate": "13/12/2022",
"CertificateDate": "05/02/2003",
"CertificateOfCompetence": "070644",
"DriverImage": "base64Image",
"PIN": "OSEI-0069-00-01"
},
"verification": {
"status": "VERIFIED",
"reference": "971385d0-3cc3-488d-9a19-f9d901492a86"
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | This field indicates the detail of the response. |
response_code | Represents the response code. |
data | It is a string that contains some encrypted or encoded data related to the verification. |
Name | The name of the driver. |
DateofBirth | The date of birth of the driver. |
ProcessingCenter | The processing center where the driver's license was issued. |
ClassofLicense | The class of driver's license, such as Class A (for cars) or Class B (for trucks). |
Nationality | The nationality of the driver. |
DateofIssue | The date on which the driver's license was issued. |
ExpiryDate | The date on which the driver's license expires. |
CertificateDate | The date on which the driver passed the driving test. |
CertificateofCompetence | A document that proves that the driver has the necessary skills and knowledge to drive safely. |
DriverImage | A digital image of the driver's face. |
PIN | A Personal Identification Number (PIN) that is used to authenticate the driver's license. |
verification | This field provides information about the verification process. |
status | This field indicates the status of the verification. |
reference | This field contains a reference or identifier associated with the verification process, which can be used for tracking or reference purposes. |
Updated over 1 year ago