1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-05 13:25:25 +02:00
Vitaly the Alpaca (bot) 9c977d53e1 Main build (Jenkins)
2024-10-06 16:55:08 +03:00

1.7 KiB

sidebar_position
6

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 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 :::

    Text   = "Comment for post";
    PostID = "836";
    URL    = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";

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

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

    Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text, Token);
    
  oint bitrix24 AddPostComment --url "b24-ar17wx.bitrix24.by" --postid "440" --text "Another comment" --token "fe3fa966006e9f06006b12e400000001000..."

{
 "result": 844,
 "time": {
  "start": 1728140709.9724,
  "finish": 1728140710.07853,
  "duration": 0.106137990951538,
  "processing": 0.0789551734924316,
  "date_start": "2024-10-05T18:05:09+03:00",
  "date_finish": "2024-10-05T18:05:10+03:00",
  "operating_reset_at": 1728141309,
  "operating": 0
 }
}