Update candidate details

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 your apiKey",
  "secretKey": "enter your secretKey",
  "candidatesDetailsList":
  [
      {
        "candidateId": "12345661",// this should be examroom Candidate ID
        "firstName": "john",
        "lastName": "doe",
        "addressLine1": "Address line 1",
        "addressLine2": "Test",
        "city": "Bangalore",
        "stateCode": "007",
        "postalCode": "007",
        "countryCode": "91",
        "mobileTelephoneNumber": "1234567892",
        "telephoneNumber": null,
        "emailAddress": "testg@abc.com",
        "gropID": 12345,
        "groupName": "sample goup 1"
      },
      {
        "candidateId": "123345671",
        "firstName": "",
        "lastName": "doe1",
        "addressLine1": "test",
        "addressLine2": "Test",
        "city": "Bangalore",
        "stateCode": "007",
        "postalCode": "007",
        "countryCode": "91",
        "mobileTelephoneNumber": "1234567892",
        "telephoneNumber": null,
        "emailAddress": "test@abc.com",
        "gropID": 12345,
        "groupName": "sample group"
      }
  ]
}

Output

{
    "records": [
        {
            "CandidateID": 0,
            "Result": "0",
            "Message": "First Name is invalid",

        },
        {
            "CandidateID": 14629,
            "Result": "1",
            "Message": "Candidate already exists: Updated successfully",
            "ExamID": 0
        }
    ]
}
    • 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", [ ...
    • 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 ...
    • 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", ...
    • 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", ...
    • 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 ...