GET api/Added_Games

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Added_Games
NameDescriptionTypeAdditional information
GameID

integer

None.

GameName

string

None.

DeviceID

string

None.

ScreenshotID

string

None.

GamePlayCount

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "GameID": 1,
    "GameName": "sample string 2",
    "DeviceID": "sample string 3",
    "ScreenshotID": "sample string 4",
    "GamePlayCount": 5
  },
  {
    "GameID": 1,
    "GameName": "sample string 2",
    "DeviceID": "sample string 3",
    "ScreenshotID": "sample string 4",
    "GamePlayCount": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfAdded_Games xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aigame.Models">
  <Added_Games>
    <DeviceID>sample string 3</DeviceID>
    <GameID>1</GameID>
    <GameName>sample string 2</GameName>
    <GamePlayCount>5</GamePlayCount>
    <ScreenshotID>sample string 4</ScreenshotID>
  </Added_Games>
  <Added_Games>
    <DeviceID>sample string 3</DeviceID>
    <GameID>1</GameID>
    <GameName>sample string 2</GameName>
    <GamePlayCount>5</GamePlayCount>
    <ScreenshotID>sample string 4</ScreenshotID>
  </Added_Games>
</ArrayOfAdded_Games>