Skip to main content
POST
/
v1
/
in
/
info
/
voter
Voter Id
curl --request POST \
  --url https://base_url/v1/in/info/voter \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "voterId": "ABC1234567"
}
'
{
  "code": "0x0200",
  "status": "SUCCESS",
  "message": "Verification Successful"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

The body is of type object.

Response

OK

The response is of type object.