1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-21 01:50:24 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Feed-posts-managment/Add-post-comment.md
2024-08-13 15:52:26 +03:00

1.8 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 = FunctionParameters["Bitrix24_PostID"];
  URL    = FunctionParameters["Bitrix24_URL"];
  
  Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text);
  
  OPI_TestDataRetrieval.WriteLog(Result, "AddPostComment (wh)", "Bitrix24");
  
  Text  = "Another comment";
  URL   = FunctionParameters["Bitrix24_Domain"];
  Token = FunctionParameters["Bitrix24_Token"];
  
  Result = OPI_Bitrix24.AddPostComment(URL, PostID, Text, Token);
    
  oint bitrix24 AddPostComment --url "b24-ar17wx.bitrix24.by" --postid "440" --text "Another comment" --token "fe3fa966006e9f06006b12e400000001000..."

{
  "result": 168,
  "time": {
  "start": 1720186639.67208,
  "finish": 1720186639.77202,
  "duration": 0.0999400615692139,
  "processing": 0.0715811252593994,
  "date_start": "2024-07-05T13:37:19+00:00",
  "date_finish": "2024-07-05T13:37:19+00:00",
  "operating_reset_at": 1720187239,
  "operating": 0
  }
  }