1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-02 23:27:50 +02:00
Vitaly the Alpaca (bot) ab33d2f19d Main build (Jenkins)
2024-09-17 12:29:46 +03:00

1.8 KiB

sidebar_position
sidebar_position
5

Delete comment

Delete task comment by ID

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

Parameter CLI option Type Description
URL --url String URL of webhook or a Bitrix24 domain, when token used
TaskID --task Number, String Task ID
CommentID --comment Number, String ID of comment to remove
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: task.commentitem.delete :::

    URL       = FunctionParameters["Bitrix24_URL"];
    TaskID    = FunctionParameters["Bitrix24_CommentsTaskID"];
    CommentID = FunctionParameters["Bitrix24_HookCommentID"];

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

    URL       = FunctionParameters["Bitrix24_Domain"];
    Token     = FunctionParameters["Bitrix24_Token"];
    CommentID = FunctionParameters["Bitrix24_CommentID"];

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

{
  "result": true,
  "time": {
  "start": 1720295541.27592,
  "finish": 1720295541.38076,
  "duration": 0.104840040206909,
  "processing": 0.0781040191650391,
  "date_start": "2024-07-06T19:52:21+00:00",
  "date_finish": "2024-07-06T19:52:21+00:00",
  "operating_reset_at": 1720296141,
  "operating": 0
  }
  }