Skip to main content

Get task comment

Gets task comment data by ID

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

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


Code example
    URL       = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
CommentID = "3974";
TaskID = "1518";

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

URL = "b24-ar17wx.bitrix24.by";
Token = "b529cb66006e9f06006b12e400000001000...";
CommentID = "3976";

Result = OPI_Bitrix24.GetTaskComment(URL, TaskID, CommentID, Token);
CLI command example
    
oint bitrix24 GetTaskComment --url "b24-ar17wx.bitrix24.by" --task "1082" --comment "2936" --token "fe3fa966006e9f06006b12e400000001000..."

Result
{
"result": {
"POST_MESSAGE_HTML": null,
"ID": "1496",
"AUTHOR_ID": "1",
"AUTHOR_NAME": "Anton Titovets",
"AUTHOR_EMAIL": "",
"POST_DATE": "2024-07-06T19:52:08+00:00",
"POST_MESSAGE": "The task has been changed, let's split up"
},
"time": {
"start": 1720295539.50621,
"finish": 1720295539.55446,
"duration": 0.0482499599456787,
"processing": 0.019589900970459,
"date_start": "2024-07-06T19:52:19+00:00",
"date_finish": "2024-07-06T19:52:19+00:00",
"operating_reset_at": 1720296139,
"operating": 0
}
}