# Verify - Versions

## Version 0.1

## To extract the data from the document

<mark style="color:green;">`POST`</mark> `https://intellidocdemo.innov8tif.com`<mark style="color:orange;">/ekyc/</mark>*<mark style="color:orange;">api/intellidoc/verify</mark>*

#### Request Body

| Name                                            | Type   | Description                                                                                                                                                                                                                                                |
| ----------------------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| apiKey<mark style="color:red;">\*</mark>        | string | API Key provided by Innov8tif. Please contact the Innov8tif sales team to obtain it.                                                                                                                                                                       |
| version<mark style="color:red;">\*</mark>       | string | API version, currently Version 0.1.                                                                                                                                                                                                                        |
| docType<mark style="color:red;">\*</mark>       | string | Supported document types can be found [here](https://api2-ekycapis.innov8tif.com/intellidoc/intellidoc-all/supported-document-and-fields/malaysia#user-content-doc-type-vs-content-list)                                                                   |
| base64Content<mark style="color:red;">\*</mark> | file   | <p><mark style="color:red;"><strong>Base64 of image/pdf file.</strong></mark> </p><p></p><ul><li><em>Support only JPEG, PNG and PDF file only.</em> </li><li><em>Maximum <mark style="color:red;">3</mark> pages only</em> </li></ul>                      |
| country<mark style="color:red;">\*</mark>       | string | <p>3 character country code following ISO 3166-1 alpha-3 (<a href="https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3"><https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3></a>)</p><ul><li>Currently only support: <strong>MYS (Malaysia)</strong>.</li></ul> |

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

```javascript

{
    "status": "success",
    "messageCode": "",
    "message": "",
    "content": [
        {
            "key": "bank_name",
            "value": "Maybank"
        },
        {
            "key": "bank_account_no",
            "value": "1234-1101122"
        },
        {
            "key": "account_holder_name",
            "value": "LIM KA WONG"
        },
        {
            "key": "account_holder_address",
            "value": "NO 1111, JALAN KAMANA 43231, KAMANA UTAMA, SEKSYEN 32, SHAH ALAM, 40460 SELANGOR"
        },
        {
            "key": "statement_date",
            "value": "31/05/24"
        }
    ]
}

    
```

{% endtab %}
{% endtabs %}
