Task Results: Overview of Methods
If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect the MCP server so the assistant can utilize the official REST documentation.
The task result captures the outcome of the work on the task. The methods in the tasks.task.result.* group allow you to manually add a result, create a result from a task chat message, modify the result text, delete a result, and retrieve a list of results for a task.
Quick navigation: all methods
REST 3.0 and Tasks
Task result methods are part of the REST API 3.0. Calls are made through the address /rest/api/.
For general context on tasks, task chat, files, and related objects, see the section Tasks in REST 3.0.
Connection to Task and Chat
Task. Each result is linked to a task via the taskId field. The task identifier can be obtained when creating a task, retrieving a task, or using the old method of getting a list of tasks.
Task Chat. The method tasks.task.result.addfromchatmessage creates a result from a chat message. To do this, pass the messageId obtained when sending a message using the tasks.task.chat.message.send method or the chat message handling methods.
How to Get Started
- Obtain the task identifier
- Add a result using the tasks.task.result.add method or create it from a chat message using the tasks.task.result.addfromchatmessage method
- If necessary, modify the result text using the tasks.task.result.update method
- Retrieve the list of task results using the tasks.task.result.list method
- If the task result is no longer needed, delete it using the tasks.task.result.delete method
Overview of Methods
Scope:
tasksWho can perform the method: depending on the method
|
Method |
Description |
|
Adds a result to the task |
|
|
Creates a result from a task chat message |
|
|
Updates the result text |
|
|
Returns a list of task results |
|
|
Deletes a task result |