action signl4_get_alerts_alert_id_attachments { label: "Get attachments of an alert" description: "Get attachments of an alert by id." provider: signl4 method: GET path: "/alerts/{alertId}/attachments" encoding: json input: { type: "object" properties: { alertId: { type: "string" } } required: ["alertId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { contentType: { type: "string" } id: { type: "string" } name: { type: "string" } } additionalProperties: false } } }