Nurama Developers

list_task_events

List the audit / activity events for a single task — status changes, assignments, column moves, comments, etc.

Read-only tool.

List the audit / activity events for a single task — status changes, assignments, column moves, comments, etc. Use this to understand the history of a task before acting on it, or to write a summary of recent activity.

Input

PropertyTypeRequiredDescription
taskIdstringyesUUID of the task whose events to fetch.
eventTypestringnoOptional filter by event type (e.g. "statusChange", "assigned").
limitnumbernoPage size (1-50, default 20). min 1. max 50

JSON Schema

{
  "type": "object",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "UUID of the task whose events to fetch."
    },
    "eventType": {
      "type": "string",
      "description": "Optional filter by event type (e.g. \"statusChange\", \"assigned\")."
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 50,
      "description": "Page size (1-50, default 20)."
    }
  },
  "required": [
    "taskId"
  ],
  "additionalProperties": false
}

On this page