action truesight_get_one_group {
label: "Gets detailed information about a specific group."
description: "You need to provide a Device ID:
- use the hardware/groups service to get all available group ID."
provider: truesight
method: GET
path: "/hardware/groups/{groupId}"
encoding: json
input: {
type: "object"
properties: {
groupId: {
type: "string"
}
}
required: ["groupId"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}