Permanent Address Digital Verification
The following documentation explains how to integrate with the Permanent Digital Address Verification API. This API is used to perform permanent digital address verification for candidates.
API Endpoint
Endpoint URL: POST
https://api.staging.nsdctrust.com/verification/api/1.0/bgv/diy
Request
To perform permanent digital address verification, send a POST request to the above endpoint with the following JSON payload:
{
"data": {
"pincode": "122002",
"country": "India",
"district": "GURUGRAM",
"state": "HARYANA",
"vtc": "Gurgaon Division",
"line1": "test"
},
"verificationName": "bgv-permanent-extended-address",
"transactionId": "66f4f62f96331407e6998990"
}
Parameters
- pincode (string): The candidate's permanent address pincode(Required)
- country (string): The candidate's permanent address Country(Required)
- district (string): The candidate's permanent address district(Required)
- state (string): The candidate's permanent address state(Required)
- vtc (string): The candidate's permanent address village/town/city(Required)
- line1 (string): The candidate's permanent address basic details(Like: house number, street)(Required)
- verificationName (string): Name of verification Accepted value:- (Required)
- bgv-permanent-extended-address
- transactionId (string): Id you get in the add candidate api response (Required)
Response
If the data is valid, the response will be as follows:
{
"code": 0,
"message": "Success"
}