Skip to main content

Delete task time accounting

Deletes record of time accounting

Function DeleteTaskTimeAccounting(Val URL, Val TaskID, Val RecordID, Val Token = "") Export

ParameterCLI optionTypeDescription
URL--urlStringURL of webhook or a Bitrix24 domain, when token used
TaskID--taskString, NumberID of task for time accounting
RecordID--recordString, NumberTime record ID
Token--tokenStringAccess token, when app auth method used

Returns: Map Of KeyAndValue - serialized JSON of answer from Bitrix24 API


tip

Method at API documentation: task.elapseditem.delete


Code example
    URL      = "https://b24-ar17wx.bitrix24.by/rest/1/1o2...";
TaskID = "1524";
RecordID = "482";

Result = OPI_Bitrix24.DeleteTaskTimeAccounting(URL, TaskID, RecordID);

URL = "b24-ar17wx.bitrix24.by";
Token = "b529cb66006e9f06006b12e400000001000...";
RecordID = "484";

Result = OPI_Bitrix24.DeleteTaskTimeAccounting(URL, TaskID, RecordID, Token);
CLI command example
    
oint bitrix24 DeleteTaskTimeAccounting --url "b24-ar17wx.bitrix24.by" --task "1088" --record "308" --token "fe3fa966006e9f06006b12e400000001000..."

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
}
}