action truesight_get_device_monitors {
label: "Gets the Monitors for a specific device."
description: "You need to provide a Device ID:
- use the hardware/devices service to get all available device IDs."
provider: truesight
method: GET
path: "/hardware/device-monitors/{deviceId}"
encoding: json
input: {
type: "object"
properties: {
deviceId: {
type: "integer"
format: "int32"
}
}
required: ["deviceId"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}