# International Passport(Async)

{% hint style="info" %}
This endpoint allows you to verify an international passport in an asynchronous manner. The passport details you sent in will be verified at a later time and the response will be posted to your configured Webhook URL.\
\
N.B: You need to configure your webhook URL before using this endpoint.
{% endhint %}

## Verify a passport information asynchronously

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}/api/v2/biometrics/merchant/data/verification/national_passport/async`

Verify a passport information asynchronously

#### Headers

| Name                                        | Type   | Description        |
| ------------------------------------------- | ------ | ------------------ |
| x-api-key<mark style="color:red;">\*</mark> | String | \<your secret key> |
| app-id<mark style="color:red;">\*</mark>    | String | \<your app id>     |

#### Request Body

| Name                                         | Type   | Description       |
| -------------------------------------------- | ------ | ----------------- |
| number<mark style="color:red;">\*</mark>     | String | Passport number   |
| last\_name<mark style="color:red;">\*</mark> | String | Last name of user |

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

```javascript
{
    "status": true,
    "response_code": "00",
    "verification": {
        "status": true,
        "reference": "00ceb670-707d-4669-a4fa-d7422ddca2dd"
    }
}
```

{% endtab %}
{% endtabs %}
