Update Exam
You can update multiple exam details by passing multiple exams in array for updating their details or a single exam details as well.
URL: https://apis.examroom.ai/api/UpdateExams
Input
{
"apiKey": "enter your apiKey",
"secretKey": "enter your secretKey",
"aestAddExam":
[
{
"examID": 9996,
"examName": "ExamOpenAPI-4",
"duration": "120",
"groupID": 12345,
"groupName": "GroupOpenAPI",
"examCompany": null,
"ExamURL":"https://test.examroom.ai/examurl"
},
{
"examID": 9999,// examroomExamID
"examName": "ExamOpenAPI-1*",
"duration": "120",// In minutes
"groupID": 12345,
"groupName": "GroupOpenAPI",
"examCompany": null,
"ExamURL":"http://test.examroom.ai/examURL" // must be https
},
]
}
Output
{
"records": [
{
"CandidateID": 0,
"Result": "1",
"Message": "Exam Updated Successfully",
"ExamID": 9187
},
{
"CandidateID": 0,
"Result": "0",
"Message": "ExamURL is invalid",
"ExamID": 0
}
]
}