• Home
  • Dynatrace API
  • Environment
  • Synthetic v1
  • Nodes
  • GET a node

Synthetic nodes API - GET a node

We have a new version of this API—Synthetic API v2. Check it out!

Gets all parameters of the specified synthetic node.

The request produces an application/json payload.

GETManagedDynatrace for Governmenthttps://{your-domain}/e/{your-environment-id}/api/v1/synthetic/nodes/{nodeId}
SaaShttps://{your-environment-id}.live.dynatrace.com/api/v1/synthetic/nodes/{nodeId}
Environment ActiveGatehttps://{your-activegate-domain}/e/{your-environment-id}/api/v1/synthetic/nodes/{nodeId}

Authentication

To execute this request, you need an access token with one of the following scopes:

  • DataExport
  • ExternalSyntheticIntegration
  • ReadSyntheticData

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

Parameters

ParameterTypeDescriptionInRequired
nodeIdstring

The ID of the required synthetic node.

pathrequired

Response

Response codes

CodeTypeDescription
200Node

Success

Response body objects

The Node object

Configuration of a synthetic node.

A synthetic node is an ActiveGate that is able to execute synthetic monitors.

ElementTypeDescription
entityIdstring

The ID of the synthetic node.

hostnamestring

The hostname of the synthetic node.

ipsstring[]

The IP of the synthetic node.

versionstring

The version of the synthetic node.

browserMonitorsEnabledboolean

The synthetic node is able to execute browser monitors (true) or not (false).

activeGateVersionstring

The version of the Active Gate.

oneAgentRoutingEnabledboolean

The Active Gate has the One Agent routing enabled ('true') or not ('false').

operatingSystemstring

The Active Gate's host operating system.

autoUpdateEnabledboolean

The Active Gate has the Auto update option enabled ('true') or not ('false')

statusstring

The status of the synthetic node.

playerVersionstring

The version of the synthetic player.

healthCheckStatusstring

The health check status of the synthetic node.

browserTypestring

The browser type.

browserVersionstring

The browser version.

Response body JSON model

json
{ "entityId": "3086117876", "hostname": "gdn.dyna.trace", "ips": [ "238.245.160.14" ], "version": "1.161.0.20181210-173639", "browserMonitorsEnabled": true, "activeGateVersion": "1.172.2.20190607-040913", "oneAgentRoutingEnabled": true, "operatingSystem": "Linux", "autoUpdateEnabled": true, "status": "Running", "playerVersion": "1.179.0.20190920-145430", "healthCheckStatus": "Ok", "browserType": "Chrome", "browserVersion": "69.0.3497.81" }

Example

In this example, the request lists all synthetic nodes available in the mySampleEnv environment.

The API token is passed in the Authorization header.

The result is truncated to three entries.

Curl

bash
curl -X GET \ https://mySampleEnv.live.dynatrace.com/api/v1/synthetic/nodes/353074222 \ -H 'Authorization: Api-Token dt0c01.abc123.abcdefjhij1234567890'

Request URL

plaintext
https://mySampleEnv.live.dynatrace.com/api/v1/synthetic/nodes/353074222

Response body

json
{ "entityId": "353074222", "hostname": "GDN-007", "ips": [ "132.46.87.141" ], "version": "1.166.0.20190311-110828", "browserMonitorsEnabled": true }

Response code

200