Skip to main content

Delete comment

Delete task comment by ID

Function DeleteTaskComment(Val URL, Val TaskID, Val CommentID, Val Token = "") Export

ParameterCLI optionTypeRequiredDescription
URL--urlStringURL of webhook or a Bitrix24 domain, when token used
TaskID--taskNumber, StringTask ID
CommentID--commentNumber, StringID of comment to remove
Token--tokenStringAccess token, when app auth method used

Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API

tip

Method at API documentation: task.commentitem.delete


1C:Enterprise/OneScript code example
    URL       = "https://b24-ar17wx.bitrix24.by/rest/1/h0m...";
TaskID = "9040";
CommentID = "20926";

Result = OPI_Bitrix24.DeleteTaskComment(URL, TaskID, CommentID);

URL = "b24-ar17wx.bitrix24.by";
Token = "6ad03969006e9f06006b12e400000001000...";
CommentID = "20928";

Result = OPI_Bitrix24.DeleteTaskComment(URL, TaskID, CommentID, Token);
    oint bitrix24 DeleteTaskComment \
--url "b24-ar17wx.bitrix24.by" \
--task "9050" \
--comment 20950 \
--token "***"
Result
{
"result": true,
"time": {
"start": 1765396359,
"finish": 1765396359.29324,
"duration": 0.29324197769165,
"processing": 0,
"date_start": "2025-12-10T19:52:39+00:00",
"date_finish": "2025-12-10T19:52:39+00:00",
"operating_reset_at": 1765396959,
"operating": 0
}
}