action truesight_get_history { label: "Gets historical data for a specific group, application or service." description: "Gets the historical data for a specific group, application or service, for a given period.

If a parent ID (group ID, application ID, or service ID) is provided, the function narrows down the devices list to those attached to the specified parent:
- use the hardware/groups service in the Groups section to get all available group IDs.
- use the hardware/applications service in the Applications section to get all available application IDs.
- use the hardware/services service in the Services section to get all available service IDs.

Note: At most, one parent ID is taken into account according to this order of precedence:
  1. group ID
  2. application ID
  3. service ID
" provider: truesight method: GET path: "/hardware/history" encoding: json input: { type: "object" properties: { applicationId: { type: "string" } from: { type: "integer" format: "int64" } groupId: { type: "string" } serviceId: { type: "string" } to: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }