1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-25 12:24:39 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Tasks-managment/Add-task-to-favorites.md

60 lines
1.4 KiB
Markdown
Raw Normal View History

---
sidebar_position: 17
---
# Add task to favorites list
Add task to favorites list
2024-07-10 13:58:29 +03:00
`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
2024-07-10 14:05:58 +03:00
<br/>
:::tip
Method at API documentation: [tasks.task.favorite.add](https://dev.1c-bitrix.ru/rest_help/tasks/task/tasks/tasks_task_favorite_add.php)
:::
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-09-24 11:38:18 +03:00
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
2024-10-15 10:07:27 +03:00
TaskID = "2446";
2024-08-13 16:47:32 +03:00
Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID);
2024-09-24 11:38:18 +03:00
URL = "b24-ar17wx.bitrix24.by";
2024-10-15 10:07:27 +03:00
Token = "21750a67006e9f06006b12e400000001000...";
TaskID = "2448";
2024-08-13 16:47:32 +03:00
Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID, Token);
```
2024-10-15 09:53:37 +03:00
```json title="Result"
2024-08-14 09:06:31 +03:00
{
2024-10-06 16:55:08 +03:00
"result": true,
"time": {
2024-10-09 09:42:00 +03:00
"start": 1728454777.13737,
"finish": 1728454777.17877,
"duration": 0.0414021015167236,
"processing": 0.0116980075836182,
"date_start": "2024-10-09T09:19:37+03:00",
"date_finish": "2024-10-09T09:19:37+03:00",
"operating_reset_at": 1728455377,
"operating": 0
2024-10-06 16:55:08 +03:00
}
}
```