action influxdata_get_checks { label: "List all checks" provider: influxdata method: GET path: "/checks" encoding: json input: { type: "object" properties: { orgID: { type: "string" } } required: ["orgID"] additionalProperties: false } output: { properties: { checks: { type: "array" items: { type: "object" } } links: { type: "object" required: ["self"] properties: { next: { type: "string" format: "uri" description: "URI of resource." } prev: { type: "object" additionalProperties: true } self: { type: "object" additionalProperties: true } } } } } }