mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
1.6 KiB
1.6 KiB
sidebar_position |
---|
17 |
Add task to favorites list
Add task to favorites list
Function AddTaskToFavorites(Val URL, Val TaskID, 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 |
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: tasks.task.favorite.add
:::
URL = "https://b24-ar17wx.bitrix24.by/rest/1/ztbe...";
TaskID = "1074";
Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID);
URL = "b24-ar17wx.bitrix24.by";
Token = "c03fa966006e9f06006b12e400000001000...";
TaskID = "1076";
Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID, Token);
oint bitrix24 AddTaskToFavorites --url "b24-ar17wx.bitrix24.by" --task "1080" --token "fe3fa966006e9f06006b12e400000001000..."
{
"result": true,
"time": {
"start": 1718569733.98858,
"finish": 1718569734.02857,
"duration": 0.0399899482727051,
"processing": 0.00951814651489258,
"date_start": "2024-06-16T20:28:53+00:00",
"date_finish": "2024-06-16T20:28:54+00:00",
"operating_reset_at": 1718570334,
"operating": 0
}
}