Add comment to post
Adds a comment to the post
Function AddPostComment(Val URL, Val PostID, Val Text, Val Token = "") Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
| PostID | --postid | String, Number | ✔ | Post ID |
| Text | --text | String | ✔ | Comment text |
| Token | --token | String | ✖ | Access 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 = "3180";
URL = "https://b24-ar17wx.bitrix24.by/rest/1/h0m...";
Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text);
Text = "Another comment";
URL = "b24-ar17wx.bitrix24.by";
Token = "8a1bee68006e9f06006b12e400000001000...";
Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text, Token);
- Bash
- CMD/Bat
oint bitrix24 AddPostComment \
--url "b24-ar17wx.bitrix24.by" \
--postid 3200 \
--text "Another comment" \
--token "***"
oint bitrix24 AddPostComment ^
--url "b24-ar17wx.bitrix24.by" ^
--postid 3200 ^
--text "Another comment" ^
--token "***"
Result
{
"result": 3110,
"time": {
"start": 1760521737,
"finish": 1760521738.16839,
"duration": 1.16838908195496,
"processing": 1,
"date_start": "2025-10-15T09:48:57+00:00",
"date_finish": "2025-10-15T09:48:58+00:00",
"operating_reset_at": 1760522337,
"operating": 0.192625045776367
}
}