Conversation
Read counterpart to b24_task_comment_add (task.commentitem.getlist, v2). Lets an agent catch up on a task's comment thread or check whether the operator was @-mentioned (Bitrix24 renders mentions as [USER=<id>]Name[/USER] inside the comment text, so callers match on that pattern).
…b24_im_message_list) Bitrix24 portals on the newer Task Card UI move task discussion into a linked chat — task.commentitem.* (b24_task_comment_list) returns empty even when the task has an active thread. b24_task_get exposes the task's chatId so an agent can bridge into the new im.* messenger domain: - b24_task_get (tasks.task.get, v3) — verified against a live portal that this method's wire param is `id` (not `taskId`), the response root is `item` (not `task`), and responsible/chat only come back nested (`responsible.id` / `chat.id`) — `createdDate`/`createdBy` aren't valid TaskDto fields at all on this portal version. - b24_im_dialog_list (im.recent.list) — recent Messenger dialogs (personal DMs, group chats, task chats) with unread state. im.recent.list was picked over the older im.recent.get after confirming on a live portal that im.recent.get silently ignores LIMIT. - b24_im_message_list (im.dialog.messages.get) — read a dialog's messages, resolving authorId to authorName from the response's embedded user list. Also documents on b24_task_comment_list that an empty result on these portals likely means the discussion moved to the linked chat.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Type of change
Linked issue
Checklist
pnpm lintpassespnpm typecheckpassespnpm testpassesdocs/andskills/(if you change the tool-authoring conventions or checklist — not just add a tool — keep the human guidedocs/ADDING-TOOLS.mdand the agent skillskills/manage-bx24-template-mcp/adding-tools.mdin sync)Screenshots / logs
Notes for reviewers