GET api/v3/LiveQuizEvents/GetLiveQuizUserQuestionResponse?passCode={passCode}&questionId={questionId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
passCode | string |
Required |
|
questionId | integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
LiveQuizEventUserQuestionResponseName | Description | Type | Additional information |
---|---|---|---|
QuestionId | integer |
None. |
|
ChoiceId | integer |
None. |
|
IsCorrect | boolean |
None. |
|
PassCode | string |
None. |
|
LiveQuizEventId | integer |
None. |
|
ShotClassId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "QuestionId": 1, "ChoiceId": 1, "IsCorrect": true, "PassCode": "sample string 1", "LiveQuizEventId": 1, "ShotClassId": 1 }
text/html
Sample:
{"QuestionId":1,"ChoiceId":1,"IsCorrect":true,"PassCode":"sample string 1","LiveQuizEventId":1,"ShotClassId":1}
text/xml
Sample:
<LiveQuizEventUserQuestionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassCore.Models"> <ChoiceId>1</ChoiceId> <IsCorrect>true</IsCorrect> <LiveQuizEventId>1</LiveQuizEventId> <PassCode>sample string 1</PassCode> <QuestionId>1</QuestionId> <ShotClassId>1</ShotClassId> </LiveQuizEventUserQuestionResponse>