action truesight_get_device_agent {
label: "Gets detailed information about an Agent."
description: "You need to provide a Device ID to retrieve detailed information about the Agent that Monitors the device:
-use the hardware/devices service to get all available device IDs."
provider: truesight
method: GET
path: "/hardware/devices/{deviceId}/agent"
encoding: json
input: {
type: "object"
properties: {
deviceId: {
type: "integer"
format: "int32"
}
}
required: ["deviceId"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}