games.getGameById
Description
Returns a game by its game id.
Code Examples
Request Parameters
game_id
required path parameter
watch_index
optional query parameter
A query parameter denoting the requests watch index.
Response Body
game
objectA full game.
game.game_id
stringgame.create_ts
stringRFC3339 timestamp
game.name_id
stringA human readable short identifier used to references resources. Different than a
rivet.common#Uuid
because this is intended to be human readable. Different thanrivet.common#DisplayName
because this should not include special characters and be short.game.display_name
stringRepresent a resource's readable display name.
game.developer_group_id
stringgame.total_player_count
numberUnsigned 32 bit integer.
game.logo_url
stringThe URL of this game's logo image.
game.banner_url
stringThe URL of this game's banner image.
game.namespaces
array of objectsA list of namespace summaries.
game.namespaces.namespace_id
stringgame.namespaces.create_ts
stringRFC3339 timestamp
game.namespaces.display_name
stringRepresent a resource's readable display name.
game.namespaces.version_id
stringgame.namespaces.name_id
stringA human readable short identifier used to references resources. Different than a
rivet.common#Uuid
because this is intended to be human readable. Different thanrivet.common#DisplayName
because this should not include special characters and be short.
game.versions
array of objectsA list of version summaries.
game.versions.version_id
stringgame.versions.create_ts
stringRFC3339 timestamp
game.versions.display_name
stringRepresent a resource's readable display name.
game.available_regions
array of objectsA list of region summaries.
game.available_regions.region_id
stringgame.available_regions.region_name_id
stringA human readable short identifier used to references resources. Different than a
rivet.common#Uuid
because this is intended to be human readable. Different thanrivet.common#DisplayName
because this should not include special characters and be short.game.available_regions.provider
stringThe server provider of this region.
game.available_regions.universal_region
any valuegame.available_regions.provider_display_name
stringRepresent a resource's readable display name.
game.available_regions.region_display_name
stringRepresent a resource's readable display name.
watch
objectProvided by watchable endpoints used in blocking loops.
watch.index
stringIndex indicating the version of the data responded. Pass this to
WatchQuery
to block and wait for the next response.