Skip to main content

Court Record Verification

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

{
"data": {
"currentAddress": {
"pincode": "122001",
"country": "India",
"district": "GURUGRAM",
"state": "HARYANA",
"vtc": "Gurgaon Division",
"line1": "Line1"
},
"permanentAddress": {
"pincode": "122002",
"country": "India",
"district": "GURUGRAM",
"state": "HARYANA",
"vtc": "Gurgaon Division",
"line1": "Line1"
}
},
"verificationName": "bgv-criminal",
"transactionId": "664758ec4c1572facafdafa0"
}

Parameters

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