1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-02 22:05:37 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Tasks-checklists-managment/Renew-tasks-checklist-element.mdx

67 lines
1.6 KiB
Plaintext
Raw Normal View History

2024-10-15 10:50:56 +03:00
---
2024-10-15 10:16:04 +03:00
sidebar_position: 7
---
2024-10-15 10:50:56 +03:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2024-10-15 10:16:04 +03:00
# Renew tasks checklist element
Unmark an element as completed
`Function RenewTasksChecklistElement(Val URL, Val TaskID, Val ElementID, Val Token = "") Export`
2024-10-15 15:15:47 +03:00
| 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 |
2024-10-15 10:16:04 +03:00
Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API
<br/>
:::tip
Method at API documentation: [task.checklistitem.renew](https://dev.1c-bitrix.ru/rest_help/tasks/task/checklistitem/renew.php)
:::
<br/>
```bsl title="Code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
TaskID = "2446";
ElementID = "1496";
Result = OPI_Bitrix24.RenewTasksChecklistElement(URL, TaskID, ElementID);
TaskID = "2448";
ElementID = "1500";
URL = "b24-ar17wx.bitrix24.by";
Token = "21750a67006e9f06006b12e400000001000...";
Result = OPI_Bitrix24.RenewTasksChecklistElement(URL, TaskID, ElementID, Token);
```
```json title="Result"
{
"result": true,
"time": {
"start": 1728454787.24722,
"finish": 1728454787.30494,
"duration": 0.0577118396759033,
"processing": 0.0310859680175781,
"date_start": "2024-10-09T09:19:47+03:00",
"date_finish": "2024-10-09T09:19:47+03:00",
"operating_reset_at": 1728455387,
"operating": 0
}
}
```