action influxdata_get_notification_rules_idquery { label: "Retrieve a notification rule query" provider: influxdata method: GET path: "/notificationRules/{ruleID}/query" encoding: json input: { type: "object" properties: { ruleID: { type: "string" } } required: ["ruleID"] additionalProperties: false } output: { description: "Rendered flux that backs the check or notification." properties: { flux: { type: "string" } } } }