GET v1/tokens/{tokenId}

Returns token by token id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tokenId

the source id for the token

string

Required

Body Parameters

None.

Response Information

Resource Description

A response containing the token.

Token
NameDescriptionTypeAdditional information
TokenSourceId

string

None.

IssueDate

date

None.

ExpirationDate

date

None.

ParticipantSourceId

string

None.

GameSourceId

string

None.

GameName

string

None.

GameIconUrl

string

None.

Reason

string

None.

GamePlayKey

globally unique identifier

None.

Response Codes

  • 200 OK: The Token information was returned successfully
  • 401 Unauthorized:
  • 500 InternalServerError:

Response Formats

application/json, text/json

Sample:
{
  "TokenSourceId": "sample string 1",
  "IssueDate": "2025-12-11T17:08:30.8449349Z",
  "ExpirationDate": "2025-12-11T17:08:30.8449349Z",
  "ParticipantSourceId": "sample string 3",
  "GameSourceId": "sample string 4",
  "GameName": "sample string 5",
  "GameIconUrl": "sample string 6",
  "Reason": "sample string 7",
  "GamePlayKey": "f64d1c6d-c546-43fc-89d5-94edd84b2a6b"
}

text/html

Sample:
{"TokenSourceId":"sample string 1","IssueDate":"2025-12-11T17:08:30.8449349Z","ExpirationDate":"2025-12-11T17:08:30.8449349Z","ParticipantSourceId":"sample string 3","GameSourceId":"sample string 4","GameName":"sample string 5","GameIconUrl":"sample string 6","Reason":"sample string 7","GamePlayKey":"f64d1c6d-c546-43fc-89d5-94edd84b2a6b"}

application/xml, text/xml

Sample:
<Token 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:08:30.8449349-06:00</ExpirationDate>
  <GameIconUrl>sample string 6</GameIconUrl>
  <GameName>sample string 5</GameName>
  <GamePlayKey>f64d1c6d-c546-43fc-89d5-94edd84b2a6b</GamePlayKey>
  <GameSourceId>sample string 4</GameSourceId>
  <IssueDate>2025-12-11T11:08:30.8449349-06:00</IssueDate>
  <ParticipantSourceId>sample string 3</ParticipantSourceId>
  <Reason>sample string 7</Reason>
  <TokenSourceId>sample string 1</TokenSourceId>
</Token>