mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
63 lines
1.4 KiB
Markdown
63 lines
1.4 KiB
Markdown
---
|
|
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 | Destination |
|
|
|-|-|-|-|
|
|
| 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 not-webhook method used |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
URL = "https://b24-ar17wx.bitrix24.by/rest/1/4swokunb3tk7h7dt/";
|
|
TaskID = "168";
|
|
|
|
Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID);
|
|
|
|
|
|
URL = "b24-ar17wx.bitrix24.by";
|
|
Token = "b9df7366006e9f06006b12e400000001000...";
|
|
TaskID = "170";
|
|
|
|
Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID, Token);
|
|
```
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
oint bitrix24 AddTaskToFavorites --url "b24-ar17wx.bitrix24.by" --task "170" --token "b9df7366006e9f06006b12e400000001000..."
|
|
|
|
```
|
|
|
|
```json title="Result"
|
|
{
|
|
"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
|
|
}
|
|
}
|
|
```
|