--- sidebar_position: 2 description: Get 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'; # Get task comment Gets task comment data by ID `Function GetTaskComment(Val URL, Val TaskID, Val CommentID, 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 | | 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.get](https://dev.1c-bitrix.ru/rest_help/tasks/task/commentitem/get.php) :::
```bsl title="1C:Enterprise/OneScript code example" URL = "https://b24-ar17wx.bitrix24.by/rest/1/h0m..."; CommentID = "20004"; TaskID = "8622"; Result = OPI_Bitrix24.GetTaskComment(URL, TaskID, CommentID); URL = "b24-ar17wx.bitrix24.by"; Token = "53100369006e9f06006b12e400000001000..."; CommentID = "20006"; Result = OPI_Bitrix24.GetTaskComment(URL, TaskID, CommentID, Token); ``` ```bash oint bitrix24 GetTaskComment \ --url "b24-ar17wx.bitrix24.by" \ --task "8672" \ --comment 20116 \ --token "***" ``` ```batch oint bitrix24 GetTaskComment ^ --url "b24-ar17wx.bitrix24.by" ^ --task "8672" ^ --comment 20116 ^ --token "***" ``` ```json title="Result" { "result": { "POST_MESSAGE_HTML": null, "ID": "20226", "AUTHOR_ID": "1", "AUTHOR_NAME": "Антон Титовец", "AUTHOR_EMAIL": "", "POST_DATE": "2025-10-31T11:53:51+00:00", "POST_MESSAGE": "The task has been changed, let's split up" }, "time": { "start": 1761911641, "finish": 1761911641.45838, "duration": 0.458379030227661, "processing": 0, "date_start": "2025-10-31T11:54:01+00:00", "date_finish": "2025-10-31T11:54:01+00:00", "operating_reset_at": 1761912241, "operating": 0 } } ```