Passport
● LiveVerify a Passport in real time.
POST
● Live/v1/verify/passportVerify Passport
Validates and verifies a Passport. Requires the `verification.passport.read` scope on the API key. Metered as `passport.verify` after a successful upstream response.
Required scope: verification.passport.read
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | header | Yes | Bearer <api-key> (e.g. sk_test_... in sandbox, sk_live_... in production). The x-api-key header is also accepted. |
| fileNumber | string | Yes | Passport application file number. |
| dob | string | Yes | Date of birth (YYYY-MM-DD). |
| name | string | No | Name to match against records. |
Example request
{
"fileNumber": "AB1234567890123",
"dob": "1990-01-01",
"name": "Ravi Kumar"
}Example response
{
"status": "success",
"verified": true,
"data": {
"...": "provider-specific verified fields"
}
}Input format is validated with class-validator before the request ever leaves stampmitra-b2b-platform.