1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/Bitrix24/Timekeeping/Update-task-time-accounting.mdx
Vitaly the Alpaca (bot) fb1d5eb506 Main build (Jenkins)
2025-10-08 00:46:26 +03:00

105 lines
3.2 KiB
Plaintext
Vendored

---
sidebar_position: 5
description: Update task time accounting 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';
# 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/h0m...";
TaskID = "8158";
RecordID = "2976";
Text = "The text I forgot last time";
Time = 4800;
Result = OPI_Bitrix24.UpdateTaskTimeAccounting(URL, TaskID, RecordID, Time, Text);
URL = "b24-ar17wx.bitrix24.by";
Token = "c866e568006e9f06006b12e400000001000...";
RecordID = "2978";
Text = "New time record";
Time = 4800;
SetupDate = AddMonth(OPI_Tools.GetCurrentDate(), -1);
Result = OPI_Bitrix24.UpdateTaskTimeAccounting(URL, TaskID, RecordID, Time, Text, SetupDate, Token);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint bitrix24 UpdateTaskTimeAccounting \
--url "b24-ar17wx.bitrix24.by" \
--task "8128" \
--record 2966 \
--amount 4800 \
--text "New time record" \
--date "2025-09-07T14:51:31.8672415" \
--token "***"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint bitrix24 UpdateTaskTimeAccounting ^
--url "b24-ar17wx.bitrix24.by" ^
--task "8128" ^
--record 2966 ^
--amount 4800 ^
--text "New time record" ^
--date "2025-09-07T14:51:31.8672415" ^
--token "***"
```
</TabItem>
</Tabs>
```json title="Result"
{
"result": null,
"time": {
"start": 1759848693,
"finish": 1759848694.67414,
"duration": 1.67414307594299,
"processing": 1,
"date_start": "2025-10-07T14:51:33+00:00",
"date_finish": "2025-10-07T14:51:34+00:00",
"operating_reset_at": 1759849293,
"operating": 1.00789403915405
}
}
```