action signl4_get_alerts_alert_id_notifications { label: "Get alert notifications" description: "Get notifications of all users by alert id." provider: signl4 method: GET path: "/alerts/{alertId}/notifications" encoding: json input: { type: "object" properties: { alertId: { type: "string" } } required: ["alertId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { address: { type: "string" } channelType: { type: "integer" format: "int32" enum: [0, 1, 2, 4, 8, 16] } deviceName: { type: "string" } lastUpdate: { type: "string" format: "date-time" } messageStatus: { type: "integer" format: "int32" enum: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10] } userId: { type: "string" } userStatus: { type: "integer" format: "int32" enum: [0, 1, 2, 3, 4, 5, 6] } } additionalProperties: false } } }