action signl4_post_events_paged { label: "Get overview event paged." description: "Get overview event paged. If there are more results, you also get a continuation token which you can add to the event filter." provider: signl4 method: POST path: "/events/paged" encoding: json input: { type: "object" properties: { continuationToken: { type: "object" properties: { nextPartitionKey: { type: "string" } nextRowKey: { type: "string" } nextTableName: { type: "string" } } additionalProperties: false } eventStatusCode: { type: "integer" format: "int32" enum: [0, 1, 2, 3, 4, 5, 6, 1000] } maxCreationDate: { type: "string" format: "date-time" } maxResults: { type: "integer" format: "int32" } minCreationDate: { type: "string" format: "date-time" } modifiedSince: { type: "string" format: "date-time" } teamId: { type: "string" } textToSearch: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { continuationToken: { type: "object" properties: { nextPartitionKey: { type: "string" } nextRowKey: { type: "string" } nextTableName: { type: "string" } } additionalProperties: false } hasMore: { type: "boolean" } results: { type: "array" items: { type: "object" properties: { acknowledgedAlerts: { type: "array" items: { type: "string" } } alertId: { type: "string" } categoryId: { type: "string" } closedAlerts: { type: "array" items: { type: "string" } } creationTime: { type: "string" format: "date-time" } eventSourceType: { type: "integer" format: "int32" enum: [0, 1, 2, 3, 4, 5] } eventStatus: { type: "integer" format: "int32" enum: [0, 1, 2, 3, 4, 5, 6, 1000] } id: { type: "string" } lastModified: { type: "string" format: "date-time" } severity: { type: "integer" format: "int32" enum: [0, 1, 2] } teamId: { type: "string" } text: { type: "string" } title: { type: "string" } } additionalProperties: false } } } additionalProperties: false } }