Skip to main content

What are tasks?

Tasks are the actionable work items in Cyberday: compliance controls, security actions, and process steps that your team works through to meet framework requirements. Each task belongs to one or more frameworks (such as ISO 27001, NIS2, or GDPR) and tracks its own status, due date, and assigned owner.

This tool lets your AI query, filter, and summarise tasks across your entire ISMS in plain language. Use it to find what's overdue, see what a team member is working on, or get a status snapshot across a specific framework.

Basic fields

IDTitleCreated dateStatusDue dateLinked frameworksProcess description

Extended detail fields

Returned when you ask about assurance or evidence specifics.

Assurance information

Example queries

"Show me all my assigned tasks"
"List open ISO 27001 tasks and their due dates"
"Which NIS2 tasks are overdue?"
"Find tasks related to access control"
"How many GDPR tasks do we have in total?"
"Summarise our outstanding tasks by framework"

Parameters

ParameterHow to use
KeywordSearch by title, description, or task ID
Framework"ISO 27001 tasks", "GDPR tasks", "NIS2 tasks"
Assigned to me"tasks assigned to me"

Pagination is handled automatically — ask for more and it fetches the next page.

Advanced

Response schema
{
"tasks": [
{
"id": "<integer>",
"created": "<datetime string>",
"frameworks": ["<string>"],
"title": "<string>",
"process_description": "<string>",
"due_date": "<date string | null>",
"workflow_status": {
"id": "<integer>",
"title": "<string>",
"unique_tag": "<string>",
"status_type": "<integer>"
}
}
],
"total_items": "<integer>",
"total_pages": "<integer>"
}