Skip to content

GET /application/{name}/tags — List enabled tags

import { Badge } from ‘@astrojs/starlight/components’;

GET https://api.sandbox-gameye.gameye.net/application/{name}/tags

Section titled “GET https://api.sandbox-gameye.gameye.net/application/{name}/tags ”

Returns the image tags currently enabled in the Gameye fleet for a given application, ordered by priority. The first tag in the list is the one used when no version is specified in POST /session.

Requires the application:read scope.

ParameterTypeRequiredDescription
namestringYesThe name of the application.

A list of tags currently enabled in the fleet, in priority order (highest first).

FieldTypeRequiredDescription
tagsarrayYesList of enabled tag objects.
tags[].versionstringYesThe tag version string.
{
"tags": [
{ "version": "v1.2.3" },
{ "version": "v1.2.2" }
]
}

You are not authorized. Make sure your bearer token is correct.

Your API token does not have the required permissions to invoke this endpoint.

The specified application does not exist.