User Actions on Task: Overview of Methods

If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the MCP server so that the assistant can utilize the official REST documentation.

The methods in this section help manage personal task settings: start watching a task, add it to favorites, pin it in the list, and enable silent mode.

These methods do not change the task content. They help track updates, find required tasks faster in the list, and disable unnecessary notifications.

Quick links: all methods

User documentation: Searching for favorite tasks

Getting Started

  1. Get the task identifier using tasks.task.list or tasks.task.get
  2. Start watching the task using tasks.task.startwatch if you want to receive task updates
  3. Stop watching the task using tasks.task.stopwatch if you no longer need to track it
  4. Add the task to favorites using tasks.task.favorite.add to find it faster in the list
  5. Remove the task from favorites using tasks.task.favorite.remove if it is no longer needed in quick access
  6. Pin the task using tasks.task.pin if you want to keep it fixed in the list
  7. Unpin the task using tasks.task.unpin if pinning is no longer required
  8. Enable silent mode using tasks.task.mute if you do not need task notifications
  9. Disable silent mode using tasks.task.unmute to receive notifications again

Relation to Other Objects

Task. All methods in this section work with an existing task by its identifier. You can get the task identifier and data using tasks.task.get and tasks.task.list.

User. The methods perform actions of the current user on the task. The ability to perform an action depends on task access. You can check access using tasks.task.getaccess.

Task List. Pinning and favorites help find a task faster in the common list, while silent mode and watching control how you work with task notifications.

Overview of Methods

Scope: task

Who can execute the method: user with access to the task

Method

Description

tasks.task.startwatch

Starts watching a task

tasks.task.stopwatch

Stops watching a task

tasks.task.favorite.add

Adds a task to favorites

tasks.task.favorite.remove

Removes a task from favorites

tasks.task.pin

Pins a task in the list

tasks.task.unpin

Unpins a task in the list

tasks.task.mute

Enables silent mode

tasks.task.unmute

Disables silent mode