Nurama Developers

list_task_relations

List the chat / message relations attached to a task.

Read-only tool.

List the chat / message relations attached to a task. Each row tells you which chat or chat-message this task was spawned from or links to. Use to answer "where did this task come from?" or "what discussions reference it?" — complementary to get_task_links (task↔task) and list_task_events (audit log).

Input

PropertyTypeRequiredDescription
taskIdstringyesUUID of the task.
limitnumbernoPage size (1-50, default 20). min 1. max 50
pagenumbernoPage number (index pagination). min 1

JSON Schema

{
  "type": "object",
  "properties": {
    "taskId": {
      "type": "string",
      "description": "UUID of the task."
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 50,
      "description": "Page size (1-50, default 20)."
    },
    "page": {
      "type": "number",
      "minimum": 1,
      "description": "Page number (index pagination)."
    }
  },
  "required": [
    "taskId"
  ],
  "additionalProperties": false
}

On this page