GET /application/{name}/tags/available — List upstream tags
GET https://api.sandbox-gameye.gameye.net/application/{name}/tags/available
Section titled “GET https://api.sandbox-gameye.gameye.net/application/{name}/tags/available”Returns all image tags available for a given application in its upstream Docker registry. Use this to discover which versions can be enabled via POST /application/{name}/tags.
Requires the application:read scope.
Path Parameters
Section titled “Path Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Yes | The name of the application. |
Query Parameters
Section titled “Query Parameters”| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
page | integer | No | Page number to retrieve. Min 1, max 1000. | 1 |
pageSize | integer | No | Number of tags per page. Min 1, max 1000. | 20 |
Code Examples
Section titled “Code Examples”curl 'https://api.sandbox-gameye.gameye.net/application/my-game-server/tags/available?page=1&pageSize=20' \--header 'Authorization: Bearer YOUR_TOKEN' \--header 'Accept: application/json'const response = await fetch( 'https://api.sandbox-gameye.gameye.net/application/my-game-server/tags/available?page=1&pageSize=20', { headers: { 'Authorization': 'Bearer YOUR_TOKEN', 'Accept': 'application/json', }, });const { tags } = await response.json();import requests
response = requests.get( 'https://api.sandbox-gameye.gameye.net/application/my-game-server/tags/available', params={'page': 1, 'pageSize': 20}, headers={ 'Authorization': 'Bearer YOUR_TOKEN', 'Accept': 'application/json', },)tags = response.json()['tags']Responses
Section titled “Responses”A paginated list of tags available in the upstream registry.
| Field | Type | Required | Description |
|---|---|---|---|
tags | array | Yes | List of tag objects. |
tags[].version | string | Yes | The tag version string. |
{ "tags": [ { "version": "v1.2.3" }, { "version": "v1.2.2" }, { "version": "latest" } ]}You are not authorized. Make sure your bearer token is correct.
Your API token does not have the required permissions to invoke this endpoint.