Skip to main content

Get Institute

Use below api to get list of Institute. to use in the form creation api.

API Endpoint

Endpoint URL: GET https://api.staging.nsdctrust.com/verification/api/1.0/Institutes

Try it out

Response

If the candidate is valid, the response will be as follows:

{
"code": 0,
"message": "Success",
"data": {
"total": 4,
"list": [
{
"_id": "657ab9ba7c8741f1f8bc3376",
"name": "A B Shetty Memorial Institute of Dental Sciences - [ABSMIDS]"
},
{
"_id": "657ab9ba7c8741f1f8bc3376",
"name": "A B Shetty Memorial Institute of Dental Sciences - [ABSMIDS]"
},
{
"_id": "657ab9ba7c8741f1f8bc3376",
"name": "A B Shetty Memorial Institute of Dental Sciences - [ABSMIDS]"
}
]
}
}
Success Response
  • code (integer): Status code indicating the result of the request. 0 indicates success.
  • message (string): Description of the result. Success indicates the candidate was successfully added.
  • data (object): Contains list of all Institute

Below is the error resposne

{
"message": "error message",
"code": -1
}
Error Response
  • message (string): Description of the error(s) encountered. This field provides detailed information about the specific validation issues.
  • code (integer): Status code indicating the result of the request. -1 indicates a failure due to invalid candidate data.