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 = "2748";
Result = OPI_Bitrix24.GetUserParticipationStatus(URL, EventID);
URL = "b24-ar17wx.bitrix24.by";
Token = "8a1bee68006e9f06006b12e400000001000...";
EventID = "2752";
Result = OPI_Bitrix24.GetUserParticipationStatus(URL, EventID, Token);
- Bash
- CMD/Bat
oint bitrix24 GetUserParticipationStatus \
--url "b24-ar17wx.bitrix24.by" \
--event 2792 \
--token "***"
oint bitrix24 GetUserParticipationStatus ^
--url "b24-ar17wx.bitrix24.by" ^
--event 2792 ^
--token "***"
Result
{
"result": "H",
"time": {
"start": 1760522679,
"finish": 1760522679.38723,
"duration": 0.387228012084961,
"processing": 0,
"date_start": "2025-10-15T10:04:39+00:00",
"date_finish": "2025-10-15T10:04:39+00:00",
"operating_reset_at": 1760523279,
"operating": 0
}
}