This API will be used to retrieve all candidates and their details for testing.
Pass ak, sgn, and ts as headers, and all three parameters will be received using the Signature Generation API.
Headerak:{{API Key}} sgn:{{sgn}} ts:{{ts}}
URLCopy{{API Endpoint}}/api/v1/examQuestionData
BodyCopy {
"testId":"{test Id}"
}
Case 1 : When SuccessSuccess {
"result": "success",
"success": {
"code": "200",
"msg": "Operation Successfull."
},
"data": [
{
"studentId": 85628894,
"studentName": "API Document",
"studentEmailId": "admin@thinkexam.com",
"studentEnrollNumber": "ADMIN-USER"
},
{
"studentId": 85628898,
"studentName": "Bob Brown",
"studentEmailId": "bob.brown@example.com",
"studentEnrollNumber": "EN456789"
},
{
"studentId": 85628900,
"studentName": "Charlie Davis",
"studentEmailId": "charlie.davis@example.com",
"studentEnrollNumber": "EN567890"
}
]
}
Case 2 : When candidate not assignedError {
"result": "error",
"error": {
"code": "3004",
"msg": "No Records Found"
}
}