Skip to main content

Police Clearance Certificate Verification

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

{
"data": {
"fileUrl": "Url of police clearance certificate",
},
"verificationName": "bgv-police-clearance-certificate",
"transactionId": "664758ec4c1572facafdafa0"
}

Parameters​

  • fileUrl (Document): The candidate's PCC File Url, can upload using file upload API(Required)
  • verificationName (string): Name of verification Accepted value:- bgv-police-clearance-certificate(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"
}