Try it free

Deployment API - GET available versions of ActiveGate

  • Reference
  • Published Jul 02, 2020

Lists all available versions of the ActiveGate installer.

The request produces an application/json payload.

GETSaaShttps://{your-environment-id}.live.dynatrace.com/api/v1/deployment/installer/gateway/versions/{osType}
GETEnvironment ActiveGatehttps://{your-activegate-domain}:9999/e/{your-environment-id}/api/v1/deployment/installer/gateway/versions/{osType}

Authentication

Api-Token:

To execute this request, you need an access token with InstallerDownload scope.

To learn how to obtain and use it, see Personal access tokens.

Platform Token / OAuth:

Required scope: fleet-management:activegates:download

To learn how to obtain and use it, see Platform tokens or OAuth clients.

Parameters

ParameterTypeDescriptionInRequired
osTypestring

The operating system of the installer.

The element can hold these values
  • windows
  • unix
pathRequired
archstring

The architecture of your OS:

  • all: Defaults to amd64.
  • amd64: amd64 architecture.
  • s390: S/390 architecture, only supported for Linux.
  • arm64: arm64 architecture, only supported for Linux.
The element can hold these values
  • all
  • amd64
  • arm64
  • s390
queryOptional

Response

Response codes

CodeTypeDescription
200ActiveGateInstallerVersions

Success. The payload contains the available versions.

404-

Not found. See the response body for details.

4XXErrorEnvelope

Client side error.

5XXErrorEnvelope

Server side error.

Response body objects

The ActiveGateInstallerVersions object

A list of available versions of ActiveGate installer.

ElementTypeDescription
availableVersionsstring[]

Available versions.

Response body JSON models

{
"availableVersions": [
"string"
]
}