action signl4_get_alerts_report { label: "Get Alert Report" description: "Returns information about the occurred alert volume in different time periods as well as information about the \nresponse behaviour (amount of confirmed and unhandled alerts) of your team members." provider: signl4 method: GET path: "/alerts/report" encoding: json input: { type: "object" properties: { userId: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { last24Hours: { type: "object" properties: { acked: { type: "integer" format: "int64" } closed: { type: "integer" format: "int64" } end: { type: "string" format: "date-time" } lastModified: { type: "string" format: "date-time" } start: { type: "string" format: "date-time" } unhandled: { type: "integer" format: "int64" } } additionalProperties: false } subscriptionId: { type: "string" } teamCurrentDuty: { type: "object" additionalProperties: true } teamId: { type: "string" } teamLastDuty: { type: "object" additionalProperties: true } userId: { type: "string" } userLastDutyChange: { type: "object" additionalProperties: true } } additionalProperties: false } }