mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
67 lines
1.8 KiB
Markdown
67 lines
1.8 KiB
Markdown
---
|
|
sidebar_position: 2
|
|
---
|
|
|
|
# Delete task time accounting
|
|
Deletes record of time accounting
|
|
|
|
|
|
|
|
`Function DeleteTaskTimeAccounting(Val URL, Val TaskID, Val RecordID, Val Token = "") Export`
|
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|-|-|-|-|
|
|
| URL | --url | String | URL of webhook or a Bitrix24 domain, when token used |
|
|
| TaskID | --task | String, Number | ID of task for time accounting |
|
|
| RecordID | --record | String, Number | Time record 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.elapseditem.delete](https://dev.1c-bitrix.ru/rest_help/tasks/task/elapseditem/delete.php)
|
|
:::
|
|
<br/>
|
|
|
|
|
|
```bsl title="Code example"
|
|
URL = "https://b24-ar17wx.bitrix24.by/rest/1/ztbe...";
|
|
TaskID = "1092";
|
|
RecordID = "310";
|
|
|
|
Result = OPI_Bitrix24.DeleteTaskTimeAccounting(URL, TaskID, RecordID);
|
|
|
|
URL = "b24-ar17wx.bitrix24.by";
|
|
Token = "c03fa966006e9f06006b12e400000001000...";
|
|
RecordID = "312";
|
|
|
|
Result = OPI_Bitrix24.DeleteTaskTimeAccounting(URL, TaskID, RecordID, Token);
|
|
```
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
oint bitrix24 DeleteTaskTimeAccounting --url "b24-ar17wx.bitrix24.by" --task "1088" --record "308" --token "fe3fa966006e9f06006b12e400000001000..."
|
|
|
|
```
|
|
|
|
```json title="Result"
|
|
{
|
|
"result": null,
|
|
"time": {
|
|
"start": 1720816586.91135,
|
|
"finish": 1720816586.96255,
|
|
"duration": 0.0512039661407471,
|
|
"processing": 0.0238111019134522,
|
|
"date_start": "2024-07-12T20:36:26+00:00",
|
|
"date_finish": "2024-07-12T20:36:26+00:00",
|
|
"operating_reset_at": 1720817186,
|
|
"operating": 0
|
|
}
|
|
}
|
|
```
|