Candidate details by Email ID

Candidate details by Email ID

CandidateDetailsByEmail

You can fetch the candidate details of single or multiple candidates by passing the Candidate EmailID.

URL: https://apis.examroom.ai/api/CandidateDetailsByEmail

Input

{
    "apiKey": "enter your apiKey",
    "secretKey": "enter your secretKey",
    "CandidateDetails": [
        {
            "Email": "test1@abc.com"
        },

        {
            "Email": "test@abc.com"
        },
        
        {
            "Email": "test2@abc.com"
        }
    ]
}

Output

{
    "CandidateRecord": [
        {
            "Result": "1",
            "Message": "Candidate found by email",
            "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 email",
            "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"
        },
        {
            "Result": "0",
            "Message": "Candidate Not found",
            "CandidateId": null,
            "FirstName": null,
            "LastName": null,
            "ClientCandidateId": null,
            "AddressLine1": null,
            "AddressLine2": null,
            "City": null,
            "StateCode": null,
            "PostalCode": null,
            "CountryCode": null,
            "MobileTelephoneNumber": null,
            "EmailAddress": null
        }
    ]
}
    • Related Articles

    • Candidate details by ID

      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", [ ...
    • Update candidate details

      Update Candidate details You can update multiple candidates details by passing multiple candidates in array for updating their details or a single candidate details as well. URL: https://apis.examroom.ai/api/UpdateCandidates Input { "apiKey": "enter ...
    • Candidate login

      CandidateLogin You can fetch the candidate details and a direct link to login into the candidate. URL: https://apis.examroom.ai/api/CandidateLogin Input { "apiKey": "enter your apiKey", "secretKey": "enter your secretKey", "EmailID":"test1@abc.com", ...
    • Add Candidate

      Add Candidates URL: https://apis.examroom.ai/api/AddCandidates NOTE: API Key & secrete will be provided by us which will be used for all the API’s For updating any value in the database will only take Exam candidate ID or Examroom Exam ID You can add ...
    • Exam details

      ExamDetails You can fetch your exam details. URL: https://apis.examroom.ai/api/ExamDetails Input { "apiKey": "enter your apiKey", "secretKey": "enter your secretKey" } Output { "Result": 1, "Message": "Success", "details": [ { "ExamID": "377", ...