GET v1/reports/excel/summary

Retrieves excel version of Game List Summary Report

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

The GameListSummary, if it exists. Otherwise a 404 error.

GameListSummary
NameDescriptionTypeAdditional information
Id

string

None.

Name

string

None.

TypeName

string

None.

TokensIssued

integer

None.

GamePlays

integer

None.

GamesPlayed

integer

None.

ExpirationDate

date

None.

LastTokenIssued

date

None.

LastGamePlayed

date

None.

Response Codes

  • 200 OK: Requested GameListSummary successfully returned.
  • 401 Unauthorized:
  • 404 NotFound: Requested GameListSummary does not exist.
  • 500 InternalServerError:

Response Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1",
  "Name": "sample string 2",
  "TypeName": "sample string 3",
  "TokensIssued": 4,
  "GamePlays": 5,
  "GamesPlayed": 6,
  "ExpirationDate": "2025-12-11T17:04:16.8946348Z",
  "LastTokenIssued": "2025-12-11T17:04:16.8946348Z",
  "LastGamePlayed": "2025-12-11T17:04:16.8946348Z"
}

text/html

Sample:
{"Id":"sample string 1","Name":"sample string 2","TypeName":"sample string 3","TokensIssued":4,"GamePlays":5,"GamesPlayed":6,"ExpirationDate":"2025-12-11T17:04:16.8946348Z","LastTokenIssued":"2025-12-11T17:04:16.8946348Z","LastGamePlayed":"2025-12-11T17:04:16.8946348Z"}

application/xml, text/xml

Sample:
<GameListSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.Games.Api.Contracts.v1.Models">
  <ExpirationDate>2025-12-11T11:04:16.8946348-06:00</ExpirationDate>
  <GamePlays>5</GamePlays>
  <GamesPlayed>6</GamesPlayed>
  <Id>sample string 1</Id>
  <LastGamePlayed>2025-12-11T11:04:16.8946348-06:00</LastGamePlayed>
  <LastTokenIssued>2025-12-11T11:04:16.8946348-06:00</LastTokenIssued>
  <Name>sample string 2</Name>
  <TokensIssued>4</TokensIssued>
  <TypeName>sample string 3</TypeName>
</GameListSummary>