action truesight_get_agent_devices {
label: "Gets a list of all the devices monitored by an Agent."
description: "You need to provide the Device ID of a device to retrieve any other devices monitored by the same Agent:
-use the hardware/devices service to get all available device IDs."
provider: truesight
method: GET
path: "/hardware/devices/{deviceId}/agent-devices"
encoding: json
input: {
type: "object"
properties: {
deviceId: {
type: "integer"
format: "int32"
}
}
required: ["deviceId"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}