action influxdata_get_notification_rules { label: "List all notification rules" provider: influxdata method: GET path: "/notificationRules" encoding: json input: { type: "object" properties: { checkID: { type: "string" } orgID: { type: "string" } tag: { type: "string" } } required: ["orgID"] additionalProperties: false } output: { properties: { 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 } } } notificationRules: { type: "array" items: { type: "object" } } } } }