API V2
API Reference
Check if tag exists in the Gameye fleet
1 min
code examples curl location globoff 'https //api sandbox gameye gameye net/tag/{region}/{image}/{version}' \\ \ header 'accept application/json' \\ \ header 'content type application/json'import requests import json url = "https //api sandbox gameye gameye net/tag/{region}/{image}/{version}" payload = {} headers = { 'accept' 'application/json', 'content type' 'application/json' } response = requests request("get", url, headers=headers, data=payload) print(response text) var options = new restclientoptions("https //api sandbox gameye gameye net") { maxtimeout = 1, }; var client = new restclient(options); var request = new restrequest("/tag/{region}/{image}/{version}", method get); request addheader("accept", "application/json"); request addheader("content type", "application/json"); restresponse response = await client executeasync(request); console writeline(response content);var request = require('request'); var options = { 'method' 'get', 'url' 'https //api sandbox gameye gameye net/tag/{region}/{image}/{version}', 'headers' { 'accept' 'application/json', 'content type' 'application/json' } }; request(options, function (error, response) { if (error) throw new error(error); console log(response body); }); responses // ok { "exists" false }// bad request { "statuscode" 0, "code" "", "message" "", "details" "", "path" "", "timestamp" "", "identifier" "", "violations" \[ { "field" "", "description" "" } ] }// you are not authorized please make sure that the included bearer token is correct { "statuscode" 0, "code" "", "message" "", "details" "", "path" "", "timestamp" "", "identifier" "", "violations" \[ { "field" "", "description" "" } ] }// image not found or you are not authorized to use this image { "statuscode" 0, "code" "", "message" "", "details" "", "path" "", "timestamp" "", "identifier" "", "violations" \[ { "field" "", "description" "" } ] }
