Skip to main content

Local Address Digital Verification

The following documentation explains how to integrate with the Local Digital Address Verification API. This API is used to perform local digital address verification for candidates.

API Endpoint

Endpoint URL: POST https://api.staging.nsdctrust.com/verification/api/1.0/bgv/diy

Try it out

Request

To perform local 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-local-extended-address",
"transactionId": "66f4f62f96331407e6998990"
}

Parameters

  • pincode (string): The candidate's local address pincode(Required)
  • country (string): The candidate's local address Country(Required)
  • district (string): The candidate's local address district(Required)
  • state (string): The candidate's local address state(Required)
  • vtc (string): The candidate's local address village/town/city(Required)
  • line1 (string): The candidate's local address basic details(Like: house number, street)(Required)
  • verificationName (string): Name of verification Accepted value:- (Required)
    1. bgv-local-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"
}