Get user participation status
Gets the event participation status of the current user
Function GetUserParticipationStatus(Val URL, Val EventID, Val Token = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
URL | --url | String | ✔ | URL of webhook or a Bitrix24 domain, when token used |
EventID | --event | Number | ✔ | Calednar event ID |
Token | --token | String | ✖ | Access 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 = "2388";
Result = OPI_Bitrix24.GetUserParticipationStatus(URL, EventID);
URL = "b24-ar17wx.bitrix24.by";
Token = "75d8c668006e9f06006b12e400000001000...";
EventID = "2392";
Result = OPI_Bitrix24.GetUserParticipationStatus(URL, EventID, Token);
- Bash
- CMD/Bat
oint bitrix24 GetUserParticipationStatus \
--url ""b24-ar17wx.bitrix24.by"" \
--event "2472" \
--token "***"
oint bitrix24 GetUserParticipationStatus ^
--url ""b24-ar17wx.bitrix24.by"" ^
--event "2472" ^
--token "***"
Result
{
"result": "H",
"time": {
"start": 1757977126.78678,
"finish": 1757977126.8308,
"duration": 0.0440289974212646,
"processing": 0.0180048942565918,
"date_start": "2025-09-15T22:58:46+00:00",
"date_finish": "2025-09-15T22:58:46+00:00",
"operating_reset_at": 1757977726,
"operating": 0
}
}