GET api/Score/Games
Get List of High-Score Games
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ScoreGamesResultName | Description | Type | Additional information |
---|---|---|---|
Games | Collection of GameInfo |
None. |
|
err | boolean |
None. |
|
message | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Games": [ { "ProductID": 1, "Title": "sample string 2" }, { "ProductID": 1, "Title": "sample string 2" } ], "err": true, "message": "sample string 2" }
application/xml, text/xml
Sample:
<ScoreGamesResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yummy.Core.Score"> <err>true</err> <message>sample string 2</message> <Games> <GameInfo> <ProductID>1</ProductID> <Title>sample string 2</Title> </GameInfo> <GameInfo> <ProductID>1</ProductID> <Title>sample string 2</Title> </GameInfo> </Games> </ScoreGamesResult>