action signl4_post_alerts_acknowledge_all { label: "Confirms all visible alerts" description: "This method confirms all unhandled alerts your team currently has by a specific user." provider: signl4 method: POST path: "/alerts/acknowledgeAll" encoding: json input: { type: "object" properties: { categoryIds: { type: "array" items: { type: "string" } } maxDate: { type: "string" format: "date-time" } minDate: { type: "string" format: "date-time" } scope: { type: "integer" format: "int32" enum: [0, 1, 2] } teamIds: { type: "array" items: { type: "string" } } userId: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }