action truesight_rediscover {
label: "Triggers a new discovery on a specific device."
description: "You need to provide the Device ID to identify the device:
- Use the /hardware/devices service in the Device section to retrieve the Device ID of a device."
provider: truesight
method: POST
path: "/hardware/actions/{deviceId}/rediscover"
encoding: json
input: {
type: "object"
properties: {
deviceId: {
type: "integer"
format: "int32"
}
}
required: ["deviceId"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}