2024-10-15 10:50:56 +03:00
---
2024-10-15 10:16:04 +03:00
sidebar_position: 5
2025-05-05 11:15:20 +03:00
description: Delete 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
2025-05-05 09:49:19 +03:00
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Bitrix24]
2024-10-15 10:16:04 +03:00
---
2024-10-15 10:50:56 +03:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2024-10-15 10:16:04 +03:00
# Delete comment
Delete task comment by ID
`Function DeleteTaskComment(Val URL, Val TaskID, Val CommentID, Val Token = "") Export`
2024-10-15 15:15:47 +03:00
| 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 | ✔ | ID of comment to remove |
| Token | --token | String | ✖ | Access token, when app auth method used |
2024-10-15 10:16:04 +03:00
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
2024-11-21 13:27:18 +03:00
Method at API documentation: [task.commentitem.delete](https://dev.1c-bitrix.ru/rest_help/tasks/task/commentitem/delete.php)
2024-10-15 10:16:04 +03:00
:::
<br/>
2024-10-15 21:15:56 +03:00
```bsl title="1C:Enterprise/OneScript code example"
2025-10-20 19:41:52 +03:00
URL = FunctionParameters["Bitrix24_URL"];
TaskID = FunctionParameters["Bitrix24_CommentsTaskID"];
CommentID = FunctionParameters["Bitrix24_HookCommentID"];
2024-10-15 10:16:04 +03:00
Result = OPI_Bitrix24.DeleteTaskComment(URL, TaskID, CommentID);
2025-10-20 19:41:52 +03:00
URL = FunctionParameters["Bitrix24_Domain"];
Token = FunctionParameters["Bitrix24_Token"];
CommentID = FunctionParameters["Bitrix24_CommentID"];
2024-10-15 10:16:04 +03:00
Result = OPI_Bitrix24.DeleteTaskComment(URL, TaskID, CommentID, Token);
```
2024-10-20 22:36:03 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint bitrix24 DeleteTaskComment \
2025-10-07 19:27:04 +03:00
--url "b24-ar17wx.bitrix24.by" \
2025-10-15 14:32:00 +03:00
--task "8404" \
--comment 19524 \
2024-10-22 08:59:24 +03:00
--token "***"
2024-10-20 22:36:03 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint bitrix24 DeleteTaskComment ^
2025-10-07 19:27:04 +03:00
--url "b24-ar17wx.bitrix24.by" ^
2025-10-15 14:32:00 +03:00
--task "8404" ^
--comment 19524 ^
2024-10-22 08:59:24 +03:00
--token "***"
2024-10-20 22:36:03 +03:00
```
</TabItem>
</Tabs>
2024-10-15 10:16:04 +03:00
```json title="Result"
{
"result": true,
"time": {
2025-10-15 14:32:00 +03:00
"start": 1760521986,
"finish": 1760521987.20705,
"duration": 1.20704793930054,
2025-10-07 19:27:04 +03:00
"processing": 0,
2025-10-15 14:32:00 +03:00
"date_start": "2025-10-15T09:53:06+00:00",
"date_finish": "2025-10-15T09:53:07+00:00",
"operating_reset_at": 1760522587,
"operating": 0.165693044662476
2024-10-15 10:16:04 +03:00
}
}
```