action truesight_get_one_application {
label: "Gets detailed information for a specific application."
description: "You need to provide an Application ID:
- use the hardware/applications service to retrieve all available application IDs."
provider: truesight
method: GET
path: "/hardware/applications/{applicationId}"
encoding: json
input: {
type: "object"
properties: {
applicationId: {
type: "string"
}
}
required: ["applicationId"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}