GET api/v3/LiveQuizEvents/GetLiveQuizUserLeaderBoard?passCode={passCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
passCode

string

Required

Body Parameters

None.

Response Information

Resource Description

LiveQuizUserLeaderBoard
NameDescriptionTypeAdditional information
TotalQuestion

integer

None.

TotalQuestionAttempedBytheUser

integer

None.

TotalCorrectQuestion

integer

None.

NoOfDaysToExpire

integer

None.

userleaderBoard

TopScorerUser

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalQuestion": 1,
  "TotalQuestionAttempedBytheUser": 1,
  "TotalCorrectQuestion": 1,
  "NoOfDaysToExpire": 1,
  "userleaderBoard": {
    "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:
{"TotalQuestion":1,"TotalQuestionAttempedBytheUser":1,"TotalCorrectQuestion":1,"NoOfDaysToExpire":1,"userleaderBoard":{"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:
<LiveQuizUserLeaderBoard xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassCore.Models">
  <NoOfDaysToExpire>1</NoOfDaysToExpire>
  <TotalCorrectQuestion>1</TotalCorrectQuestion>
  <TotalQuestion>1</TotalQuestion>
  <TotalQuestionAttempedBytheUser>1</TotalQuestionAttempedBytheUser>
  <userleaderBoard>
    <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>
  </userleaderBoard>
</LiveQuizUserLeaderBoard>