# International Passport(Sync)

{% hint style="info" %}
TEST DATA\
number: A00400000\
*last\_name: test*
{% endhint %}

## Allows merchant to verify an International passport

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

#### 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 | the passport number |
| last\_name<mark style="color:red;">\*</mark> | String | last name           |

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

```javascript
{
"status": true,
"detail": "Intl. Passport Verification Successful",
"response_code": "00",
"data": {
    "first_name": "",
    "last_name": "",
    "middle_name": "",
    "dob": "",
    "mobile":",
    "photo": “base64 image here”,
    "signature": “base64 image here”,
    "gender": "",
    "issued_at": "",
    "issued_date": "",
    "expiry_date": "",
    "reference_id": "",
    "number": ""
    },
    "verification": {
        "status": "",
        "reference": ""
    }
}
```

{% endtab %}
{% endtabs %}
