Nurama Developers

list_chat_task_relations

List task relations anchored in a chat — every task that was created from a message in this chat, or otherwise linked to it.

Read-only tool.

List task relations anchored in a chat — every task that was created from a message in this chat, or otherwise linked to it. Use to answer "what tasks came out of this chat?" before reading the message history itself.

Input

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

JSON Schema

{
  "type": "object",
  "properties": {
    "chatId": {
      "type": "string",
      "description": "UUID of the chat."
    },
    "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": [
    "chatId"
  ],
  "additionalProperties": false
}

On this page