POST api/v3/LiveQuizEvents/DisplayLiveQuizReport

Request Information

URI Parameters

None.

Body Parameters

EventPassCode
NameDescriptionTypeAdditional information
Passcode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Passcode": "sample string 1"
}

text/html

Sample:
{"Passcode":"sample string 1"}

text/xml

Sample:
<EventPassCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassCore.Models">
  <Passcode>sample string 1</Passcode>
</EventPassCode>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

LiveQuizEventReport
NameDescriptionTypeAdditional information
AverageScore

decimal number

None.

QuesAverCorrectPercent

Collection of LiveQuizEventQuestionMetric

None.

TopScorer

Collection of TopScorerUser

None.

Response Formats

application/json, text/json

Sample:
{
  "AverageScore": 1.1,
  "QuesAverCorrectPercent": [
    {
      "QuestionId": 1,
      "Text": "sample string 2",
      "Percent": 3.1,
      "UsersCount": 4
    },
    {
      "QuestionId": 1,
      "Text": "sample string 2",
      "Percent": 3.1,
      "UsersCount": 4
    }
  ],
  "TopScorer": [
    {
      "Rank": 1,
      "UserId": "sample string 2",
      "FirstName": "sample string 3",
      "LastName": "sample string 4",
      "ProfileImage": "sample string 5",
      "BrandName": "sample string 6",
      "Points": 7,
      "LevelId": 1,
      "LevelName": "sample string 8",
      "LevelCode": "sample string 9"
    },
    {
      "Rank": 1,
      "UserId": "sample string 2",
      "FirstName": "sample string 3",
      "LastName": "sample string 4",
      "ProfileImage": "sample string 5",
      "BrandName": "sample string 6",
      "Points": 7,
      "LevelId": 1,
      "LevelName": "sample string 8",
      "LevelCode": "sample string 9"
    }
  ]
}

text/html

Sample:
{"AverageScore":1.1,"QuesAverCorrectPercent":[{"QuestionId":1,"Text":"sample string 2","Percent":3.1,"UsersCount":4},{"QuestionId":1,"Text":"sample string 2","Percent":3.1,"UsersCount":4}],"TopScorer":[{"Rank":1,"UserId":"sample string 2","FirstName":"sample string 3","LastName":"sample string 4","ProfileImage":"sample string 5","BrandName":"sample string 6","Points":7,"LevelId":1,"LevelName":"sample string 8","LevelCode":"sample string 9"},{"Rank":1,"UserId":"sample string 2","FirstName":"sample string 3","LastName":"sample string 4","ProfileImage":"sample string 5","BrandName":"sample string 6","Points":7,"LevelId":1,"LevelName":"sample string 8","LevelCode":"sample string 9"}]}

text/xml

Sample:
<LiveQuizEventReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassCore.Models">
  <AverageScore>1.1</AverageScore>
  <QuesAverCorrectPercent>
    <LiveQuizEventQuestionMetric>
      <Percent>3.1</Percent>
      <QuestionId>1</QuestionId>
      <Text>sample string 2</Text>
      <UsersCount>4</UsersCount>
    </LiveQuizEventQuestionMetric>
    <LiveQuizEventQuestionMetric>
      <Percent>3.1</Percent>
      <QuestionId>1</QuestionId>
      <Text>sample string 2</Text>
      <UsersCount>4</UsersCount>
    </LiveQuizEventQuestionMetric>
  </QuesAverCorrectPercent>
  <TopScorer>
    <TopScorerUser>
      <BrandName>sample string 6</BrandName>
      <FirstName>sample string 3</FirstName>
      <LastName>sample string 4</LastName>
      <LevelCode>sample string 9</LevelCode>
      <LevelId>1</LevelId>
      <LevelName>sample string 8</LevelName>
      <Points>7</Points>
      <ProfileImage>sample string 5</ProfileImage>
      <Rank>1</Rank>
      <UserId>sample string 2</UserId>
    </TopScorerUser>
    <TopScorerUser>
      <BrandName>sample string 6</BrandName>
      <FirstName>sample string 3</FirstName>
      <LastName>sample string 4</LastName>
      <LevelCode>sample string 9</LevelCode>
      <LevelId>1</LevelId>
      <LevelName>sample string 8</LevelName>
      <Points>7</Points>
      <ProfileImage>sample string 5</ProfileImage>
      <Rank>1</Rank>
      <UserId>sample string 2</UserId>
    </TopScorerUser>
  </TopScorer>
</LiveQuizEventReport>