action signl4_get_alerts_alert_id_attachments_attachment_id { label: "Gets a specified attachment of a specified alert." provider: signl4 method: GET path: "/alerts/{alertId}/attachments/{attachmentId}" encoding: json input: { type: "object" properties: { alertId: { type: "string" } attachmentId: { type: "string" } height: { type: "integer" format: "int32" } scale: { type: "boolean" } width: { type: "integer" format: "int32" } } required: ["alertId", "attachmentId"] additionalProperties: false } output: { type: "string" format: "binary" } }