Get question information
Method
| Method | Description |
|---|---|
| exam.questionGet | Get question information. |
Request parameters
{
"id": {QuestionId},
"test_id": {TestId}
}
Response parameters
{
"question": {
"id": {QuestionId},
"test_id": {TestId},
"question": "{Question}",
"explanation": "{Explanation}",
"type": {Type},
"case_study_id": {CaseStudyId},
"external_id": "{ExternalId}",
"points": {QuestionPoints},
"properties": {
...
}
},
"answers": [
{
"old_id": "{OldId}",
"answer": "{Answer}",
"is_correct": {IsCorrect},
"order": {Order},
"points": {AnswerPoints}
},
...
]
}
Please refer to question update operation to get explanation of all fields and possible question properties.
