Skip to main content

Get user participation status

Gets the event participation status of the current user

Function GetUserParticipationStatus(Val URL, Val EventID, Val Token = "") Export

ParameterCLI optionTypeRequiredDescription
URL--urlStringURL of webhook or a Bitrix24 domain, when token used
EventID--eventNumberCalednar event 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: calendar.meeting.status.get


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

Result = OPI_Bitrix24.GetUserParticipationStatus(URL, EventID);

URL = "b24-ar17wx.bitrix24.by";
Token = "6ad03969006e9f06006b12e400000001000...";
EventID = "3300";

Result = OPI_Bitrix24.GetUserParticipationStatus(URL, EventID, Token);
    oint bitrix24 GetUserParticipationStatus \
--url "b24-ar17wx.bitrix24.by" \
--event 3308 \
--token "***"
Result
{
"result": "H",
"time": {
"start": 1765397011,
"finish": 1765397011.73721,
"duration": 0.737210035324097,
"processing": 0,
"date_start": "2025-12-10T20:03:31+00:00",
"date_finish": "2025-12-10T20:03:31+00:00",
"operating_reset_at": 1765397611,
"operating": 0
}
}