Skip to main content

Update task comment

Changes task comment text

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

ParameterCLI optionTypeRequiredDescription
URL--urlStringURL of webhook or a Bitrix24 domain, when token used
TaskID--taskNumber, StringTask ID
CommentID--commentNumber, StringCommentID
Text--textStringComment text
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.update


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

Text = "The task has been changed, do not split up";

Result = OPI_Bitrix24.UpdateTaskComment(URL, TaskID, CommentID, Text);

URL = "b24-ar17wx.bitrix24.by";
Token = "75d8c668006e9f06006b12e400000001000...";
CommentID = "18384";

Text = "The task has been changed, let's split up";

Result = OPI_Bitrix24.UpdateTaskComment(URL, TaskID, CommentID, Text, Token);
    oint bitrix24 UpdateTaskComment \
--url ""b24-ar17wx.bitrix24.by"" \
--task ""7994"" \
--comment "18616" \
--text ""The task has been changed, let's split up"" \
--token "***"
Result
{
"result": true,
"time": {
"start": 1757976460.2847,
"finish": 1757976460.37456,
"duration": 0.0898630619049072,
"processing": 0.0680139064788818,
"date_start": "2025-09-15T22:47:40+00:00",
"date_finish": "2025-09-15T22:47:40+00:00",
"operating_reset_at": 1757977060,
"operating": 0
}
}