GET v1/reports/excel/detail/{id}

Retrieves the excel version of the Game Detail Report

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Unique Identifier of the Game requested.

string

Required

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 Game Detail Report successfully returned.
  • 401 Unauthorized:
  • 404 NotFound: Requested Game Detail Report 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:07:33.7488999Z",
  "LastTokenIssued": "2025-12-11T17:07:33.7488999Z",
  "LastGamePlayed": "2025-12-11T17:07:33.7488999Z"
}

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:07:33.7488999Z","LastTokenIssued":"2025-12-11T17:07:33.7488999Z","LastGamePlayed":"2025-12-11T17:07:33.7488999Z"}

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:07:33.7488999-06:00</ExpirationDate>
  <GamePlays>5</GamePlays>
  <GamesPlayed>6</GamesPlayed>
  <Id>sample string 1</Id>
  <LastGamePlayed>2025-12-11T11:07:33.7488999-06:00</LastGamePlayed>
  <LastTokenIssued>2025-12-11T11:07:33.7488999-06:00</LastTokenIssued>
  <Name>sample string 2</Name>
  <TokensIssued>4</TokensIssued>
  <TypeName>sample string 3</TypeName>
</GameListSummary>