Add Exam
You can add multiple array for adding the exams or a single exam
URL: https://apis.examroom.ai/api/AddExams
Input
{
"apiKey": "enter your apiKey",
"secretKey": "enter your secretKey",
"aestAddExam":
[
{
"examID": 9996,
"examName": "ExamOpenAPI-4",
"duration": "120",
"groupID": 12345,
"groupName": "GroupOpenAPI",
"ExamURL":"https://test.examroom.ai/examurl"
},
{
"examID": 9999,// Your DATABASE EXAM ID
"examName": "ExamOpenAPI-1*",
"duration": "120",
"groupID": 12345,//ID of the group for which you want to add the exam
"groupName": "GroupOpenAPI",// name of the group you want to add the exam
"ExamURL":https://testing.examroom.ai/examurl// your test URL (must be HTTPS)
}
]
}
Output
{
"records": [
{
"Result": "1",
"Message": "Exam Inserted Successfully",
"ExamID": 9187// this ID will be Examroom Database ID for your future refrence
},
{
"CandidateID": 0,
"Result": "0",
"Message": "Exam Already Exists",
"ExamID": 0
}
]
}