GET highscore/GetValues?token={token}&TopUserCount={TopUserCount}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
|
| TopUserCount | integer |
Default value is 15 |
Body Parameters
None.
Response Information
Resource Description
HighScore| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| Username | string |
None. |
|
| Score | decimal number |
None. |
|
| GameName | string |
None. |
|
| ChapterName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserId": 1,
"Username": "sample string 2",
"Score": 3.0,
"GameName": "sample string 4",
"ChapterName": "sample string 5"
}
application/xml, text/xml
Sample:
<HighScore xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/_3DHiveAPI.Models"> <ChapterName>sample string 5</ChapterName> <GameName>sample string 4</GameName> <Score>3</Score> <UserId>1</UserId> <Username>sample string 2</Username> </HighScore>
multipart/form-data
Sample:
<HighScore xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/_3DHiveAPI.Models"><ChapterName>sample string 5</ChapterName><GameName>sample string 4</GameName><Score>3</Score><UserId>1</UserId><Username>sample string 2</Username></HighScore>