1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Tasks-checklists-managment/Renew-tasks-checklist-element.md

69 lines
1.8 KiB
Markdown
Raw Normal View History

---
sidebar_position: 7
---
# Renew tasks checklist element
Unmark an element as completed
`Function RenewTasksChecklistElement(Val URL, Val TaskID, Val ElementID, 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 |
| 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.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 = "1254";
ElementID = "540";
2024-08-13 15:47:32 +02:00
Result = OPI_Bitrix24.RenewTasksChecklistElement(URL, TaskID, ElementID);
TaskID = "1256";
ElementID = "544";
2024-08-13 15:47:32 +02:00
URL = "b24-ar17wx.bitrix24.by";
Token = "7a63bc66006e9f06006b12e400000001000...";
2024-08-13 15:47:32 +02:00
Result = OPI_Bitrix24.RenewTasksChecklistElement(URL, TaskID, ElementID, Token);
```
```sh title="CLI command example"
oint bitrix24 RenewTasksChecklistElement --url "b24-ar17wx.bitrix24.by" --task "1080" --element "400" --token "fe3fa966006e9f06006b12e400000001000..."
```
```json title="Result"
2024-08-14 08:06:31 +02:00
{
"result": true,
"time": {
"start": 1720816511.09347,
"finish": 1720816511.14508,
"duration": 0.051609992980957,
"processing": 0.0250108242034912,
"date_start": "2024-07-12T20:35:11+00:00",
"date_finish": "2024-07-12T20:35:11+00:00",
"operating_reset_at": 1720817111,
"operating": 0
}
}
```