# Drivers License

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

number: 12345678909

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

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}/api/v1/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 |

#### 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": "",
     }
 }
        
```

{% endtab %}
{% endtabs %}
