Add Candidate

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 multiple arrays for adding the candidates or a single candidate

Input

{
  "apiKey": "enter your apiKey",
  "secretKey": "enter your secretKey",
  "candidatesDetailsList": 
  [
      {
        "candidateId": "123345671",// YOUR DATABASE ID (not compulsory) can be empty
        "firstName": "John",
        "lastName": "Doe",
        "addressLine1": "test",
        "addressLine2": "Test",
        "city": "Bangalore",
        "stateCode": "00709",
        "postalCode": "00709",
        "countryCode": "+1",
        "mobileTelephoneNumber": "1234567892",
        "telephoneNumber": null,
        "emailAddress": "test@abc.com",
        "gropID": 12345,// can be empty YOUR DATABASE ID FOR THE GRUOP
        "groupName": "JohnDoeTestGroup" // any new group or existing groupName
      },
      {
        "candidateId": "123345671",
        "firstName": "John",
        "lastName": "Doe",
        "addressLine1": "test",
        "addressLine2": "Test",
        "city": "Bangalore",
        "stateCode": "007",
        "postalCode": "007",
        "countryCode": "91",
        "mobileTelephoneNumber": "1234567892",
        "telephoneNumber": null,
        "emailAddress": "test@abc.com",
        "gropID": 12345,
        "groupName": "JohnDoeTestGroup"
      },
  ]
}

Output

{
    "records": [
        {
            "CandidateID": 15065, // this id will be our candidate ID in case you want to store for future reference
            "Result": "1",
            "Message": "Candidate Inserted successfully",
        },

        {
            "CandidateID": 0,
            "Result": "0",
            "Message": "Candidate Already Exists",
        },
    ]
}
    • Related Articles

    • 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", ...
    • 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 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 ...
    • User manual

      User manual Download Manual Go through the user manual which matters to you Please scroll through this manual for guidance, or click the link to the left for the specific process you are searching for. Register/Login Visit to https://examroom.ai ...