--- sidebar_position: 1 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Add tasks checklist element Adds new element of tasks checklist `Function AddTasksChecklistElement(Val URL, Val TaskID, Val Text, Val Completed = False, 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 | | Text | --text | String | ✔ | Text (title) of checklist element | | Completed | --complete | Boolean | ✖ | Mark as completed | | 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: [task.checklistitem.add](https://dev.1c-bitrix.ru/rest_help/tasks/task/checklistitem/add.php) :::
```bsl title="1C:Enterprise/OneScript code example" URL = "https://b24-ar17wx.bitrix24.by/rest/1/ps5..."; TaskID = "3982"; Text = "Checklist element"; Result = OPI_Bitrix24.AddTasksChecklistElement(URL, TaskID, Text, True); URL = "b24-ar17wx.bitrix24.by"; Token = "a8e65667006e9f06006b12e400000001000..."; TaskID = "3984"; Result = OPI_Bitrix24.AddTasksChecklistElement(URL, TaskID, Text, , Token); ``` ```bash oint bitrix24 AddTasksChecklistElement \ --url "b24-ar17wx.bitrix24.by" \ --task "4024" \ --text "Checklist element" \ --token "***" ``` ```batch oint bitrix24 AddTasksChecklistElement ^ --url "b24-ar17wx.bitrix24.by" ^ --task "4024" ^ --text "Checklist element" ^ --token "***" ``` ```json title="Result" { "result": 1460, "time": { "start": 1728454786.04734, "finish": 1728454786.13143, "duration": 0.0840880870819092, "processing": 0.0545477867126465, "date_start": "2024-10-09T09:19:46+03:00", "date_finish": "2024-10-09T09:19:46+03:00", "operating_reset_at": 1728455386, "operating": 0 } } ```