> For the complete documentation index, see [llms.txt](https://developer.myidentitypass.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.myidentitypass.com/products/data-verification/ghana/drivers-license.md).

# Drivers License

{% hint style="info" %}
TEST DATA

number: 12345678909

dob: 1999-11-13
{% endhint %}

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}/api/v2/biometrics/merchant/data/verification/gh/drivers_license`

Verify a drivers license

#### Headers

| Name                                        | Type   | Description     |
| ------------------------------------------- | ------ | --------------- |
| x-api-key<mark style="color:red;">\*</mark> | String | your secret key |
| app-id<mark style="color:red;">\*</mark>    | String | your app id     |

#### Request Body

| Name                                     | Type   | Description   |
| ---------------------------------------- | ------ | ------------- |
| dob<mark style="color:red;">\*</mark>    | Date   | \[yyyy-MM-dd] |
| number<mark style="color:red;">\*</mark> | String | License No    |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{ 
    "status": true, 
    "response_code": "00", 
    "message": "Drivers License Information retrieved", 
    "data": { 
        "Name": "", 
        "DateOfBirth": "", 
        "ProcessingCenter": "", 
        "ClassOfLicence": "", 
        "Nationality": "", 
        "DateOfIssue": "", 
        "ExpiryDate": "", 
        "CertificateDate": "", 
        "CertificateOfCompetence": "", 
        "DriverImage":"base64Image",
        "PIN": "",
     },
    "verification": {
        "status": "",
        "reference": ""
    }
 }
        
```

{% endtab %}
{% endtabs %}
