1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00
Files
OpenIntegrations/docs/en/md/Bitrix24/Comments-and-results-management/Update-task-comment.mdx
Vitaly the Alpaca (bot) cdef2d02ab Main build (Jenkins)
2025-10-21 21:43:05 +03:00

96 lines
2.8 KiB
Plaintext
Vendored

---
sidebar_position: 4
description: Update task comment and other functions to work with Bitrix24 in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Bitrix24]
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Update task comment
Changes task comment text
`Function UpdateTaskComment(Val URL, Val TaskID, Val CommentID, Val Text, Val Token = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
| TaskID | --task | Number, String | ✔ | Task ID |
| CommentID | --comment | Number, String | ✔ | CommentID |
| Text | --text | String | ✔ | Comment text |
| Token | --token | String | ✖ | Access token, when app auth method used |
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [task.commentitem.update](https://dev.1c-bitrix.ru/rest_help/tasks/task/commentitem/update.php)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/h0m...";
TaskID = "8442";
CommentID = "19608";
Text = "The task has been changed, do not split up";
Result = OPI_Bitrix24.UpdateTaskComment(URL, TaskID, CommentID, Text);
URL = "b24-ar17wx.bitrix24.by";
Token = "0ebbf768006e9f06006b12e400000001000...";
CommentID = "19610";
Text = "The task has been changed, let's split up";
Result = OPI_Bitrix24.UpdateTaskComment(URL, TaskID, CommentID, Text, Token);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint bitrix24 UpdateTaskComment \
--url "b24-ar17wx.bitrix24.by" \
--task "8404" \
--comment 19524 \
--text "The task has been changed, let's split up" \
--token "***"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint bitrix24 UpdateTaskComment ^
--url "b24-ar17wx.bitrix24.by" ^
--task "8404" ^
--comment 19524 ^
--text "The task has been changed, let's split up" ^
--token "***"
```
</TabItem>
</Tabs>
```json title="Result"
{
"result": true,
"time": {
"start": 1760521957,
"finish": 1760521957.22904,
"duration": 0.22904109954834,
"processing": 0,
"date_start": "2025-10-15T09:52:37+00:00",
"date_finish": "2025-10-15T09:52:37+00:00",
"operating_reset_at": 1760522557,
"operating": 0.178844928741455
}
}
```