> 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/sierra-leone/drivers-license.md).

# Drivers License

## Allows merchant to verify information of users using National ID and other identifiers.

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}/api/v2/biometrics/merchant/data/verification/sl/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                           |
| ---------------------------------------------- | ------ | ------------------------------------- |
| firstname                                      | String | first name(If search\_mode is BIO)    |
| lastname                                       | String | last name(if search\_mode is BIO)     |
| dob                                            | String | Date of Birth(if search\_mode is BIO) |
| search\_mode<mark style="color:red;">\*</mark> | String | ID or BIO                             |
| number                                         | String | ID number(if search\_mode is ID)      |

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

```javascript
{
   "status":True,
   "response_code":"00",
   "message":"Drivers license verification successful",
   "data":
   {
"idnumber":"DL34545454 ",
"firstname":"John",
"surname":"Doe",
"middlename": "Mill",
"dateofbirth": "20-12-1985",
"placeofbirth": "Joe Town",
"residentialaddress": "North Industrial Street",
"expirydate":"2/3/2019",
"issuedate":"2/3/2014 ",
"idclass":"A",
"issuesignature": "<base 64 string of image> ",
"signature":" <base 64 string of image>  ",
"frontportrait":"<base 64 string of image> "
}
   
}

```

{% endtab %}
{% endtabs %}
