Synthetic nodes API - GET a node

Gets all parameters of the specified synthetic node.

The request produces an application/json payload.

This request is an early adopter release and may be changed in non compatible way.

GET
  • Managed https://{your-domain}/e/{your-environment-id}/api/v1/synthetic/nodes/{nodeId}
  • SaaS https://{your-environment-id}.live.dexp.ae/api/v1/synthetic/nodes/{nodeId}

Parameters

Parameter Type Description In Required
nodeId string

The ID of the required synthetic node.

path required

Response format

The Node object

Configuration of a synthetic node.

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

Element Type Description
entityId string

The ID of the synthetic node.

hostname string

The hostname of the synthetic node.

ips string[]

The IP of the synthetic node.

version string

The version of the synthetic node.

browserMonitorsEnabled boolean

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

activeGateVersion string

The version of the Active Gate.

oneAgentRoutingEnabled boolean

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

operatingSystem string

The Active Gate's host operating system.

autoUpdateEnabled boolean

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

status string

The status of the synthetic node.

playerVersion string

The version of the synthetic player.

healthCheckStatus string

The health check status of the synthetic node.

browserType string

The browser type.

browserVersion string

The browser version.

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

curl -X GET \
  https://mySampleEnv.live.dexp.ae/api/v1/synthetic/nodes/353074222 \
  -H 'Authorization: Api-Token abcdefjhij1234567890'

Request URL

https://mySampleEnv.live.dexp.ae/api/v1/synthetic/nodes/353074222

Response body

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

Response code

200