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 |
---|
18 |
Remove task from favorites list
Delete task from favorites list
Function RemoveTaskFromFavorites(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.remove
:::
URL = "https://b24-ar17wx.bitrix24.by/rest/1/f2ppp8uucc891111/";
TaskID = "1078";
Result = OPI_Bitrix24.RemoveTaskFromFavorites(URL, TaskID);
URL = "b24-ar17wx.bitrix24.by";
Token = "fe3fa966006e9f06006b12e400000001000...";
TaskID = "1080";
Result = OPI_Bitrix24.RemoveTaskFromFavorites(URL, TaskID, Token);
oint bitrix24 RemoveTaskFromFavorites --url "b24-ar17wx.bitrix24.by" --task "1080" --token "fe3fa966006e9f06006b12e400000001000..."
{
"result": true,
"time": {
"start": 1718569735.08926,
"finish": 1718569735.1282,
"duration": 0.0389459133148193,
"processing": 0.00808191299438476,
"date_start": "2024-06-16T20:28:55+00:00",
"date_finish": "2024-06-16T20:28:55+00:00",
"operating_reset_at": 1718570335,
"operating": 0
}
}