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
        }
    ]
}