--- sidebar_position: 17 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Add task to favorites list Add task to favorites list `Function AddTaskToFavorites(Val URL, Val TaskID, Val Token = "") Export` | Parameter | CLI option | Type | Required | 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](https://dev.1c-bitrix.ru/rest_help/tasks/task/tasks/tasks_task_favorite_add.php) :::
```bsl title="1C:Enterprise/OneScript code example" URL = "https://b24-ar17wx.bitrix24.by/rest/1/h0m..."; TaskID = "4614"; Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID); URL = "b24-ar17wx.bitrix24.by"; Token = "b4c59767006e9f06006b12e400000001000..."; TaskID = "4616"; Result = OPI_Bitrix24.AddTaskToFavorites(URL, TaskID, Token); ``` ```bash oint bitrix24 AddTaskToFavorites \ --url "b24-ar17wx.bitrix24.by" \ --task "4526" \ --token "***" ``` ```batch oint bitrix24 AddTaskToFavorites ^ --url "b24-ar17wx.bitrix24.by" ^ --task "4526" ^ --token "***" ``` ```json title="Result" { "result": true, "time": { "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 } } ```