> For the complete documentation index, see [llms.txt](https://api2-ekycapis.innov8tif.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api2-ekycapis.innov8tif.com/intellidoc/intellidoc-all/document-recognition/verify/verify-versions.md).

# 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 %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://api2-ekycapis.innov8tif.com/intellidoc/intellidoc-all/document-recognition/verify/verify-versions.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
