Skip to main content

Get user busy

Gets an array of user events in the specified interval

Function GetUserBusy(Val URL, Val Users, Val StartDate, Val EndDate, Val Token = "") Export

ParameterCLI optionTypeRequiredDescription
URL--urlStringURL of webhook or a Bitrix24 domain, when token used
Users--usersNumber, Array Of NumberIDs of users or a single user
StartDate--fromDateStart date of the period
EndDate--toDateEnd date of the period
Token--tokenStringAccess token, when app auth method used

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


tip

Method at API documentation: calendar.accessibility.get


1C:Enterprise/OneScript code example
    URL        = "https://b24-ar17wx.bitrix24.by/rest/1/h0m...";
CalendarID = "1322";

User = 1;

Week = 604800;
CurrentDate = OPI_Tools.GetCurrentDate();

StartDate = CurrentDate;
EndDate = CurrentDate + Week;

Result = OPI_Bitrix24.GetUserBusy(URL, User, StartDate, EndDate);

URL = "b24-ar17wx.bitrix24.by";
Token = "75d8c668006e9f06006b12e400000001000...";
CalendarID = "1324";

Result = OPI_Bitrix24.GetUserBusy(URL, User, StartDate, EndDate, Token);
    oint bitrix24 GetUserBusy \
--url ""b24-ar17wx.bitrix24.by"" \
--users "1" \
--from ""2025-09-15T22:59:01.9535752"" \
--to ""2025-09-22T22:59:01.9535752"" \
--token "***"
Result
{
"result": {
"1": [
{
"ID": "2468",
"NAME": "[Под вопросом]",
"DATE_FROM": "16.09.2025 22:59:00",
"DATE_TO": "16.09.2025 23:59:00",
"DATE_FROM_TS_UTC": "1758041940",
"DATE_TO_TS_UTC": "1760648340",
"~USER_OFFSET_FROM": 0,
"~USER_OFFSET_TO": 0,
"DT_SKIP_TIME": "N",
"TZ_FROM": "Europe/Moscow",
"TZ_TO": "Europe/Moscow",
"ACCESSIBILITY": "quest",
"IMPORTANCE": "low",
"EVENT_TYPE": null
},
{
"ID": "2472",
"NAME": "[Под вопросом]",
"DATE_FROM": "16.09.2025 22:59:00",
"DATE_TO": "16.09.2025 23:59:00",
"DATE_FROM_TS_UTC": "1758041940",
"DATE_TO_TS_UTC": "1760648340",
"~USER_OFFSET_FROM": 0,
"~USER_OFFSET_TO": 0,
"DT_SKIP_TIME": "N",
"TZ_FROM": "Europe/Moscow",
"TZ_TO": "Europe/Moscow",
"ACCESSIBILITY": "quest",
"IMPORTANCE": "low",
"EVENT_TYPE": null
}
]
},
"time": {
"start": 1757977146.25877,
"finish": 1757977146.29286,
"duration": 0.0340950489044189,
"processing": 0.0113399028778076,
"date_start": "2025-09-15T22:59:06+00:00",
"date_finish": "2025-09-15T22:59:06+00:00",
"operating_reset_at": 1757977746,
"operating": 0
}
}