POST api/CustomerScore/GetGlobalLeaderboardList
Request Information
URI Parameters
None.
Body Parameters
GlobalLeaderboardQueryInfoName | Description | Type | Additional information |
---|---|---|---|
AccountId | globally unique identifier |
None. |
|
CustomerId | globally unique identifier |
None. |
|
SeasonTypeId | globally unique identifier |
None. |
|
PageNumber | integer |
None. |
|
NumberOfRows | integer |
None. |
|
FilterText | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "AccountId": "af72457c-8b34-4177-b6e6-16e64baeb543", "CustomerId": "7403cbde-f6c1-420c-bc4d-d9c8353fa18e", "SeasonTypeId": "fd8edeef-dd27-4d68-b44c-1d9e8f3da5fb", "PageNumber": 1, "NumberOfRows": 1, "FilterText": "sample string 3" }
application/xml, text/xml
Sample:
<GlobalLeaderboardQueryInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.CustomerScoreModol.Queries"> <FilterText xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Common">sample string 3</FilterText> <NumberOfRows xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Common">1</NumberOfRows> <PageNumber xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Common">1</PageNumber> <AccountId>af72457c-8b34-4177-b6e6-16e64baeb543</AccountId> <CustomerId>7403cbde-f6c1-420c-bc4d-d9c8353fa18e</CustomerId> <SeasonTypeId>fd8edeef-dd27-4d68-b44c-1d9e8f3da5fb</SeasonTypeId> </GlobalLeaderboardQueryInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of LeaderboardDtoName | Description | Type | Additional information |
---|---|---|---|
RankNumber | integer |
None. |
|
Id | globally unique identifier |
None. |
|
Username | string |
None. |
|
CustomerImage | string |
None. |
|
Points | integer |
None. |
|
TotalCounts | integer |
None. |
|
ContestId | globally unique identifier |
None. |
|
Description | string |
None. |
|
IsTieBreakerWinner | boolean |
None. |
|
TieBreakerAnswer | string |
None. |
|
TMID | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "RankNumber": 1, "Id": "a30f6aae-8b8f-407b-83c7-f9eb8aa9e740", "Username": "sample string 2", "CustomerImage": "sample string 3", "Points": 4, "TotalCounts": 1, "ContestId": "8a56ce30-87eb-4bb9-954b-24c20a980855", "Description": "sample string 6", "IsTieBreakerWinner": true, "TieBreakerAnswer": "sample string 7", "TMID": "sample string 8" }, { "RankNumber": 1, "Id": "a30f6aae-8b8f-407b-83c7-f9eb8aa9e740", "Username": "sample string 2", "CustomerImage": "sample string 3", "Points": 4, "TotalCounts": 1, "ContestId": "8a56ce30-87eb-4bb9-954b-24c20a980855", "Description": "sample string 6", "IsTieBreakerWinner": true, "TieBreakerAnswer": "sample string 7", "TMID": "sample string 8" } ]
application/xml, text/xml
Sample:
<ArrayOfLeaderboardDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.CustomerScoreModol.Model"> <LeaderboardDto> <ContestId>8a56ce30-87eb-4bb9-954b-24c20a980855</ContestId> <CustomerImage>sample string 3</CustomerImage> <Description>sample string 6</Description> <Id>a30f6aae-8b8f-407b-83c7-f9eb8aa9e740</Id> <IsTieBreakerWinner>true</IsTieBreakerWinner> <Points>4</Points> <RankNumber>1</RankNumber> <TMID>sample string 8</TMID> <TieBreakerAnswer>sample string 7</TieBreakerAnswer> <TotalCounts>1</TotalCounts> <Username>sample string 2</Username> </LeaderboardDto> <LeaderboardDto> <ContestId>8a56ce30-87eb-4bb9-954b-24c20a980855</ContestId> <CustomerImage>sample string 3</CustomerImage> <Description>sample string 6</Description> <Id>a30f6aae-8b8f-407b-83c7-f9eb8aa9e740</Id> <IsTieBreakerWinner>true</IsTieBreakerWinner> <Points>4</Points> <RankNumber>1</RankNumber> <TMID>sample string 8</TMID> <TieBreakerAnswer>sample string 7</TieBreakerAnswer> <TotalCounts>1</TotalCounts> <Username>sample string 2</Username> </LeaderboardDto> </ArrayOfLeaderboardDto>