You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
104 lines
2.8 KiB
Plaintext
Vendored
104 lines
2.8 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 5
|
|
description: Get tasks checklist element and other functions to work with Bitrix24 in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
|
|
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Bitrix24]
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Get tasks checklist element
|
|
Gets tasks checklist element by ID
|
|
|
|
|
|
|
|
`Function GetTasksChecklistElement(Val URL, Val TaskID, Val ElementID, 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 |
|
|
| ElementID | --element | Number, String | ✔ | Element ID |
|
|
| Token | --token | String | ✖ | Access token, when app auth method used |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
|
|
|
|
<br/>
|
|
|
|
:::tip
|
|
Method at API documentation: [task.checklistitem.get](https://dev.1c-bitrix.ru/rest_help/tasks/task/checklistitem/get.php)
|
|
:::
|
|
<br/>
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
URL = "https://b24-ar17wx.bitrix24.by/rest/1/h0m...";
|
|
TaskID = "8618";
|
|
ElementID = "6080";
|
|
|
|
Result = OPI_Bitrix24.GetTasksChecklistElement(URL, TaskID, ElementID);
|
|
|
|
TaskID = "8620";
|
|
ElementID = "6084";
|
|
|
|
URL = "b24-ar17wx.bitrix24.by";
|
|
Token = "53100369006e9f06006b12e400000001000...";
|
|
|
|
Result = OPI_Bitrix24.GetTasksChecklistElement(URL, TaskID, ElementID, Token);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
oint bitrix24 GetTasksChecklistElement \
|
|
--url "b24-ar17wx.bitrix24.by" \
|
|
--task "8670" \
|
|
--element 6124 \
|
|
--token "***"
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
oint bitrix24 GetTasksChecklistElement ^
|
|
--url "b24-ar17wx.bitrix24.by" ^
|
|
--task "8670" ^
|
|
--element 6124 ^
|
|
--token "***"
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"result": {
|
|
"ID": "6164",
|
|
"TASK_ID": "8720",
|
|
"PARENT_ID": "6162",
|
|
"CREATED_BY": "1",
|
|
"TITLE": "New elements text",
|
|
"SORT_INDEX": "1",
|
|
"IS_COMPLETE": "N",
|
|
"IS_IMPORTANT": "N",
|
|
"TOGGLED_BY": null,
|
|
"TOGGLED_DATE": "",
|
|
"MEMBERS": [],
|
|
"ATTACHMENTS": []
|
|
},
|
|
"time": {
|
|
"start": 1761911606,
|
|
"finish": 1761911606.26001,
|
|
"duration": 0.260011911392212,
|
|
"processing": 0,
|
|
"date_start": "2025-10-31T11:53:26+00:00",
|
|
"date_finish": "2025-10-31T11:53:26+00:00",
|
|
"operating_reset_at": 1761912206,
|
|
"operating": 0
|
|
}
|
|
}
|
|
```
|