# Version 1

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

#### Request Body

| Name     | Type   | Description                                                                                                                                 |
| -------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------- |
| 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 " %}

```
{
    "status": "success",
    "icNumberMatch": true,
    "nameMatch": true
}
```

{% endtab %}
{% endtabs %}

### Input Example

{% code title="mykad" %}

```
{
    "apiKey": "apikey",
    "icNumber": "900119080123",
    "name": "Tan Juan"
}
```

{% endcode %}
