GET api/{version}/StudentCourseMaterial/GetVideoQuestionAndAnswers?studentCourseMaterialId={studentCourseMaterialId}®istrationId={registrationId}
Used to get video question and answers
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| studentCourseMaterialId | integer |
Required |
|
| registrationId | integer |
Required |
|
| version | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of VideoInteractiveQuestions| Name | Description | Type | Additional information |
|---|---|---|---|
| QuestionId | integer |
None. |
|
| TimeFrame | integer |
None. |
|
| QuestionTitle | string |
None. |
|
| lstChoices | Collection of AnswerChoices |
None. |
|
| Score | integer |
None. |
|
| AnswerId | integer |
None. |
|
| Answer | string |
None. |
|
| CorrectAnswer | string |
None. |
|
| QuestionShown | boolean |
None. |
|
| Explanation | string |
None. |
|
| InCorrectExplanation | string |
None. |
|
| QuestionType | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"QuestionId": 1,
"TimeFrame": 2,
"QuestionTitle": "sample string 3",
"lstChoices": [
{
"ChoiceId": 1,
"ChoiceDescription": "sample string 2"
},
{
"ChoiceId": 1,
"ChoiceDescription": "sample string 2"
}
],
"Score": 4,
"AnswerId": 5,
"Answer": "sample string 6",
"CorrectAnswer": "sample string 7",
"QuestionShown": true,
"Explanation": "sample string 9",
"InCorrectExplanation": "sample string 10",
"QuestionType": "sample string 11"
},
{
"QuestionId": 1,
"TimeFrame": 2,
"QuestionTitle": "sample string 3",
"lstChoices": [
{
"ChoiceId": 1,
"ChoiceDescription": "sample string 2"
},
{
"ChoiceId": 1,
"ChoiceDescription": "sample string 2"
}
],
"Score": 4,
"AnswerId": 5,
"Answer": "sample string 6",
"CorrectAnswer": "sample string 7",
"QuestionShown": true,
"Explanation": "sample string 9",
"InCorrectExplanation": "sample string 10",
"QuestionType": "sample string 11"
}
]