Extensions API - GET an extension's instance

Lists properties of the specified instance of the ActiveGate extension.

The request produces an application/json payload.

GETSaaShttps://{your-environment-id}.live.dynatrace.com/api/config/v1/extensions/{id}/instances/{configurationId}
Environment ActiveGatehttps://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/extensions/{id}/instances/{configurationId}

Authentication

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

To learn how to obtain and use it, see Tokens and authentication.

Parameters

ParameterTypeDescriptionInRequired
idstring

The ID of the extension.

pathrequired
configurationIdstring

The ID of the configuration.

pathrequired

Response

Response codes

CodeTypeDescription
200ExtensionConfigurationDto

Success

Response body objects

The ExtensionConfigurationDto object

ElementTypeDescription
activeGateEntityShortRepresentation

The short representation of a Dynatrace entity.

enabledboolean

The extension is enabled (true) or disabled (false).

endpointIdstring

The ID of the endpoint.

endpointNamestring

The name of the endpoint, displayed in Dynatrace.

extensionIdstring

The ID of the extension.

hostIdstring

The ID of the host on which the extension runs.

propertiesobject

The list of extension parameters.

Each parameter is a key-value pair.

useGlobalboolean

Allows to skip current configuration and use global one.

The EntityShortRepresentation object

The short representation of a Dynatrace entity.

ElementTypeDescription
descriptionstring

A short description of the Dynatrace entity.

idstring

The ID of the Dynatrace entity.

namestring

The name of the Dynatrace entity.

Response body JSON model

{
"activeGate": {
"id": "7835970235169136995",
"name": "ActiveGate Host Name"
},
"enabled": true,
"hostId": "HOST-01A7DEFA5340A86D",
"id": "custom.remote.python.demo",
"properties": {
"dropdownProperty": "three",
"password": "",
"serverIp": "127.0.0.1",
"username": "dynatrace"
},
"useGlobal": false
}