action signl4_post_alerts_close_all { label: "Close all acknowledged alerts." description: "This method closes all acknowledged alerts your team currently has." provider: signl4 method: POST path: "/alerts/closeAll" 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 } }