CandidateDetailsByID
You can fetch the candidate details of single or multiple candidates by passing the CandidateID.
URL: https://apis.examroom.ai/api/CandidateDetailsByID
Input
{
"apiKey": "enter your apiKey",
"secretKey": "enter your secretKey",
[
{
"CandidateID": "12334567"
},
{
"CandidateID": "14629"
}
]
}
Output
{
"CandidateRecord": [
{
"Result": "1",
"Message": "Candidate found by CandidateID ",
"CandidateId": "14957",
"FirstName": "John",
"LastName": "Doe",
"ClientCandidateId": "12334567",
"AddressLine1": "test",
"AddressLine2": "Test",
"City": "Bangalore",
"StateCode": null,
"PostalCode": null,
"CountryCode": "",
"MobileTelephoneNumber": "1234567892",
"EmailAddress": "test1@abc.com"
},
{
"Result": "1",
"Message": "Candidate found by CandidateID ",
"CandidateId": "14629",
"FirstName": "John",
"LastName": "Doe",
"ClientCandidateId": "12334566",
"AddressLine1": "test",
"AddressLine2": "Test",
"City": "Bangalore",
"StateCode": null,
"PostalCode": null,
"CountryCode": "",
"MobileTelephoneNumber": "1234567892",
"EmailAddress": "test@abc.com"
}
]
}