Voter ID
● LiveVerify a Voter ID in real time.
POST
● Live/v1/verify/voter-idVerify Voter ID
Validates and verifies a Voter ID. Requires the `verification.voter.read` scope on the API key. Metered as `voter.verify` after a successful upstream response.
Required scope: verification.voter.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. |
| voterId | string | Yes | EPIC / Voter ID number. |
| name | string | No | Name to match against records. |
Example request
{
"voterId": "ABC1234567",
"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.