Skip to main content

Add comment to post

Adds a comment to the post

Function AddPostComment(Val URL, Val PostID, Val Text, Val Token = "") Export

ParameterCLI optionTypeRequiredDescription
URL--urlStringURL of webhook or a Bitrix24 domain, when token used
PostID--postidString, NumberPost ID
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: log.blogcomment.add


1C:Enterprise/OneScript code example
Text = "Comment for post";
PostID = "3326";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/av5...";

Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text);

Text = "Another comment";
URL = "b24-ar17wx.bitrix24.by";
Token = "a5b00469006e9f06006b12e400000001000...";

Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text, Token);
oint bitrix24 AddPostComment \
--url "b24-ar17wx.bitrix24.by" \
--postid 4152 \
--text "Another comment" \
--token "***"
Result
{
"result": 4062,
"time": {
"start": 1779804615,
"finish": 1779804615.86582,
"duration": 0.865823984146118,
"processing": 0,
"date_start": "2026-05-26T14:10:15+00:00",
"date_finish": "2026-05-26T14:10:15+00:00",
"operating_reset_at": 1779805215,
"operating": 0
}
}