GET api/v3/LiveQuizEvents/GetLiveQuizLeaderBoard?passCode={passCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| passCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TopScorerUserForShotClasses| Name | Description | Type | Additional information |
|---|---|---|---|
| Rank | integer |
None. |
|
| UserId | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| ProfileImage | string |
None. |
|
| Score | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Rank": 1,
"UserId": "sample string 2",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"ProfileImage": "sample string 5",
"Score": 6
},
{
"Rank": 1,
"UserId": "sample string 2",
"FirstName": "sample string 3",
"LastName": "sample string 4",
"ProfileImage": "sample string 5",
"Score": 6
}
]
text/html
Sample:
[{"Rank":1,"UserId":"sample string 2","FirstName":"sample string 3","LastName":"sample string 4","ProfileImage":"sample string 5","Score":6},{"Rank":1,"UserId":"sample string 2","FirstName":"sample string 3","LastName":"sample string 4","ProfileImage":"sample string 5","Score":6}]
text/xml
Sample:
<ArrayOfTopScorerUserForShotClasses xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShotClassCore.Models">
<TopScorerUserForShotClasses>
<FirstName>sample string 3</FirstName>
<LastName>sample string 4</LastName>
<ProfileImage>sample string 5</ProfileImage>
<Rank>1</Rank>
<Score>6</Score>
<UserId>sample string 2</UserId>
</TopScorerUserForShotClasses>
<TopScorerUserForShotClasses>
<FirstName>sample string 3</FirstName>
<LastName>sample string 4</LastName>
<ProfileImage>sample string 5</ProfileImage>
<Rank>1</Rank>
<Score>6</Score>
<UserId>sample string 2</UserId>
</TopScorerUserForShotClasses>
</ArrayOfTopScorerUserForShotClasses>