Skip to main content

What are events?

Events are the activity log of your Cyberday ISMS. Every task completion, risk update, data system change, and user action is recorded as a timestamped event, giving you a searchable audit trail across your entire organisation's security work.

This tool lets your AI surface what has changed, who made changes, and when. Use it to review recent activity across the ISMS, track what a specific user has been doing, or investigate what changed before an incident was raised.

Fields

IDCreated dateUserMessageTopicParent topicEvent typeEvent codeAdditional dataWorktime

Example queries

"What's happened in our ISMS this week?"
"What has [name] done in Cyberday this month?"
"Have any risks been updated recently?"
"Show me the history of changes to our data systems"
"Who completed tasks last week?"

Search

Events support free text search across item titles, user names, user emails, and event descriptions.

Item nameUser name or emailKeyword

Advanced

Response schema
{
"events": [
{
"id": "<integer>",
"created": "<datetime string>",
"user_fullname": "<string>",
"user_id": "<integer>",
"item_type": "<string>",
"message": "<string (HTML)>",
"topic": {
"id": "<integer>",
"title": "<string>",
"tool_meta": {
"tool": {"id": "<integer>", "title": "<string>", "unique_tag": "<string>"},
"category": {"id": "<integer>", "title": "<string>", "unique_tag": "<string>"}
}
} | null,
"parent_topic": {
"id": "<integer>",
"title": "<string>",
"tool_meta": {
"tool": {"id": "<integer>", "title": "<string>", "unique_tag": "<string>"},
"category": {"id": "<integer>", "title": "<string>", "unique_tag": "<string>"}
}
} | null,
"event_type": "<string>",
"event_code": "<integer>",
"additional_data": "<object>",
"worktime": "<value | null>"
}
],
"total_items": "<integer>",
"total_pages": "<integer>"
}