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