mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-04-13 11:50:53 +02:00
1.7 KiB
1.7 KiB
sidebar_position
sidebar_position |
---|
3 |
Add comment to task
Create new comment to the task
Function AddTaskComment(Val URL, Val TaskID, Val Text, 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 |
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: task.commentitem.add
:::
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
TaskID = "2108";
Text = "Task impossible, let's split up";
Result = OPI_Bitrix24.AddTaskComment(URL, TaskID, Text);
URL = "b24-ar17wx.bitrix24.by";
Token = "37d1fe66006e9f06006b12e400000001000...";
Text = "Task uninpossible, don't split up";
Result = OPI_Bitrix24.AddTaskComment(URL, TaskID, Text, Token);
oint bitrix24 AddTaskComment --url "b24-ar17wx.bitrix24.by" --task "1082" --text "Task uninpossible, don't split up" --token "fe3fa966006e9f06006b12e400000001000..."
{
"result": 5880,
"time": {
"start": 1728329108.79313,
"finish": 1728329108.94594,
"duration": 0.152812004089355,
"processing": 0.124232053756714,
"date_start": "2024-10-07T22:25:08+03:00",
"date_finish": "2024-10-07T22:25:08+03:00",
"operating_reset_at": 1728329708,
"operating": 0.124212026596069
}
}