1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-05-31 23:20:02 +02:00
OpenIntegrations/docs/en/md/Bitrix24/Timekeeping/Update-task-time-accounting.mdx
Vitaly the Alpaca (bot) e96fbdb32f Main build (Jenkins)
2024-10-19 14:21:45 +03:00

81 lines
2.1 KiB
Plaintext

---
sidebar_position: 5
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Update task time accounting
Update time accounting record data
`Function UpdateTaskTimeAccounting(Val URL, Val TaskID, Val RecordID, Val Time, Val Text = "", Val SetupDate = "", Val Token = "") Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
| TaskID | --task | String, Number | ✔ | Task ID |
| RecordID | --record | String, Number | ✔ | Time record ID |
| Time | --amount | String, Number | ✔ | Time spent in seconds |
| Text | --text | String | ✖ | Comment text |
| SetupDate | --date | String | ✖ | Date the record was set |
| 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.update](https://dev.1c-bitrix.ru/rest_help/tasks/task/elapseditem/update.php)
:::
<br/>
```bsl title="1C:Enterprise/OneScript code example"
URL = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
TaskID = "2534";
RecordID = "882";
Text = "The text I forgot last time";
Time = 4800;
Result = OPI_Bitrix24.UpdateTaskTimeAccounting(URL, TaskID, RecordID, Time, Text);
URL = "b24-ar17wx.bitrix24.by";
Token = "f69b1367006e9f06006b12e400000001000...";
RecordID = "884";
Text = "New time record";
Time = 4800;
SetupDate = AddMonth(OPI_Tools.GetCurrentDate(), -1);
Result = OPI_Bitrix24.UpdateTaskTimeAccounting(URL
, TaskID
, RecordID
, Time
, Text
, SetupDate
, Token);
```
```json title="Result"
{
"result": null,
"time": {
"start": 1728454838.1335,
"finish": 1728454838.20827,
"duration": 0.0747687816619873,
"processing": 0.0432851314544678,
"date_start": "2024-10-09T09:20:38+03:00",
"date_finish": "2024-10-09T09:20:38+03:00",
"operating_reset_at": 1728455438,
"operating": 0
}
}
```