POST api/CustomerScore/GetGlobalLeaderboardListBySeason
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": "8297b549-daf3-4832-ab3e-3eac26ef29d0", "CustomerId": "5c1de3d6-6908-4930-a8bb-b1918436f2e9", "SeasonTypeId": "91049953-751f-44ed-8ba3-d66f8b04ab48", "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>8297b549-daf3-4832-ab3e-3eac26ef29d0</AccountId> <CustomerId>5c1de3d6-6908-4930-a8bb-b1918436f2e9</CustomerId> <SeasonTypeId>91049953-751f-44ed-8ba3-d66f8b04ab48</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": "55d8b741-b2d8-4ce9-b10f-48d8c06e80f1", "Username": "sample string 2", "CustomerImage": "sample string 3", "Points": 4, "TotalCounts": 1, "ContestId": "6a10dec8-3a0c-441b-8e1f-81e21b76b146", "Description": "sample string 6", "IsTieBreakerWinner": true, "TieBreakerAnswer": "sample string 7", "TMID": "sample string 8" }, { "RankNumber": 1, "Id": "55d8b741-b2d8-4ce9-b10f-48d8c06e80f1", "Username": "sample string 2", "CustomerImage": "sample string 3", "Points": 4, "TotalCounts": 1, "ContestId": "6a10dec8-3a0c-441b-8e1f-81e21b76b146", "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>6a10dec8-3a0c-441b-8e1f-81e21b76b146</ContestId> <CustomerImage>sample string 3</CustomerImage> <Description>sample string 6</Description> <Id>55d8b741-b2d8-4ce9-b10f-48d8c06e80f1</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>6a10dec8-3a0c-441b-8e1f-81e21b76b146</ContestId> <CustomerImage>sample string 3</CustomerImage> <Description>sample string 6</Description> <Id>55d8b741-b2d8-4ce9-b10f-48d8c06e80f1</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>