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
- Get the task identifier using tasks.task.list or tasks.task.get
- Start watching the task using tasks.task.startwatch if you want to receive task updates
- Stop watching the task using tasks.task.stopwatch if you no longer need to track it
- Add the task to favorites using tasks.task.favorite.add to find it faster in the list
- Remove the task from favorites using tasks.task.favorite.remove if it is no longer needed in quick access
- Pin the task using tasks.task.pin if you want to keep it fixed in the list
- Unpin the task using tasks.task.unpin if pinning is no longer required
- Enable silent mode using tasks.task.mute if you do not need task notifications
- 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:
taskWho can execute the method: user with access to the task
|
Method |
Description |
|
Starts watching a task |
|
|
Stops watching a task |
|
|
Adds a task to favorites |
|
|
Removes a task from favorites |
|
|
Pins a task in the list |
|
|
Unpins a task in the list |
|
|
Enables silent mode |
|
|
Disables silent mode |