Skip to main content

Police Verification

The following documentation explains how to integrate with the Police Verification API. This API is used to perform police 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 police verification, send a POST request to the above endpoint with the following JSON payload:

{
"data": {
"permanentAddress": {
"pincode": "122001",
"country": "India",
"district": "GURUGRAM",
"state": "HARYANA",
"vtc": "Gurgaon Division",
"line1": "XXX, sector XX"
}
},
"verificationName": "bgv-police-verification",
"transactionId": "67eb967bb4710778ca292746"
}

Parameters

  • permanentAddress (Object): The candidate's Permanent Address(Required)
  • verificationName (string): Name of verification Accepted value:- bgv-police-verification(Required)
  • 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"
}