> For the complete documentation index, see [llms.txt](https://api-old.innov8tif.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-old.innov8tif.com/okaydb/malaysia/information-check/version-1.md).

# Version 2

<mark style="color:green;">`POST`</mark> `http://okaydbdemo.innov8tif.com/ekyc/okaydb/api/my/v2`

#### Request Body

| Name        | Type   | Description                                                                                                                                 |
| ----------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------- |
| dataEnabled | string | <p>Default is False.<br>Set True to return personal details</p>                                                                             |
| docType     | string | <p>- "mykad" for citizen details<br>- "myLicense" for driving license details</p>                                                           |
| name        | string | Name as shown on ID card. Used for name matching. If name is not given, name matching will not be done and return empty result in response. |
| icNumber    | string | ID card number as shown on ID card. Used for ic number matching.                                                                            |
| apiKey      | string | To be assigned by Innov8tif                                                                                                                 |

{% tabs %}
{% tab title="200 mykad" %}

```
{
    "status": "success",
    "icNumberMatch": true,
    "nameMatch": true,
    "data": {
        "name": "TAN JUAN",
        "icNumber": "960119081234",
        "dob": "19 Jan 1996",
        "gender": "LELAKI"
    }
}
```

{% endtab %}

{% tab title="201 myLicense" %}

```
{
    "status": "success",
    "expired": false,
    "data": {
        "name": "TAN JUAN",
        "icNumber": "9601190801234",
        "licenseType": "CDL - B2,D",
        "expiryDate": "19/01/2023",
        "commenceDate": "21/03/2018"
    }
}
```

{% endtab %}
{% endtabs %}

### Input Example

{% code title="mykad" %}

```
{
    "apiKey": "apikey",
    "icNumber": "900119080123",
    "name": "Tan Juan",
    "docType": "mykad",
    "dataEnabled": true
}
```

{% endcode %}

{% code title="myLicense" %}

```
{
    "apiKey": "apikey",
    "icNumber": "900119080123",
    "name": "Tan Juan",
    "docType": "myLicense",
    "dataEnabled": true
}
```

{% endcode %}

{% file src="/files/-MIHKA6wzKYaaqR31Psl" %}
