--- sidebar_position: 3 description: Add comment to task 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'; # Add comment to task Create new comment to the task `Function AddTaskComment(Val URL, Val TaskID, 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 | | 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
:::tip Method at API documentation: [task.commentitem.add](https://dev.1c-bitrix.ru/rest_help/tasks/task/commentitem/add.php) :::
```bsl title="1C:Enterprise/OneScript code example" URL = "https://b24-ar17wx.bitrix24.by/rest/1/h0m..."; TaskID = "7838"; Text = "Task impossible, let's split up"; Result = OPI_Bitrix24.AddTaskComment(URL, TaskID, Text); URL = "b24-ar17wx.bitrix24.by"; Token = "7a1ec468006e9f06006b12e400000001000..."; Text = "Task uninpossible, don't split up"; Result = OPI_Bitrix24.AddTaskComment(URL, TaskID, Text, Token); ``` ```bash oint bitrix24 AddTaskComment \ --url "b24-ar17wx.bitrix24.by" \ --task "7310" \ --text "Task uninpossible, don't split up" \ --token "***" ``` ```batch oint bitrix24 AddTaskComment ^ --url "b24-ar17wx.bitrix24.by" ^ --task "7310" ^ --text "Task uninpossible, don't split up" ^ --token "***" ``` ```json title="Result" { "result": 18340, "time": { "start": 1757849331.85699, "finish": 1757849331.99713, "duration": 0.140136003494263, "processing": 0.117388963699341, "date_start": "2025-09-14T11:28:51+00:00", "date_finish": "2025-09-14T11:28:51+00:00", "operating_reset_at": 1757849931, "operating": 0.117371082305908 } } ```