# Prepare for verification

### Add the **i'mport library** to the target page.&#x20;

{% hint style="info" %}
Integrated identity verification is supported in **i'mport JavaScript v1.1.8 or later** versions.
{% endhint %}

{% tabs %}
{% tab title="HTML" %}
{% code title="client-side" %}

```html
<!-- jQuery -->
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.min.js" ></script>
<!-- iamport.payment.js -->
<script type="text/javascript" src="https://cdn.iamport.kr/js/iamport.payment-{SDK-latest version}.js"></script>
```

{% endcode %}
{% endtab %}
{% endtabs %}

{% hint style="danger" %}
You **must install jQuery 1.0 or later version**.
{% endhint %}

### Initialize the `IMP` object using the <mark style="color:blue;">**`Merchant ID`**</mark> on the identity verification page.

{% tabs %}
{% tab title="JavaScript" %}
{% code title="client-side" %}

```javascript
var IMP = window.IMP; // Can be omitted
IMP.init("{Merchant ID}"); // Example: imp00000000
```

{% endcode %}
{% endtab %}

{% tab title="JavaScript(ES Next)" %}

```javascript
client-side
const IMP = window.IMP; // Can be omitted
IMP.init("{Merchant ID}"); // Example: imp00000000
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: 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:

```
GET https://portone.gitbook.io/docs-en/etc/all/prepare-for-verification.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
