Skip to main content

Disable chat notifications

Disable chat notifications

Function DisableChatNotifications(Val URL, Val ChatID, Val Token = "") Export

ParameterCLI optionTypeRequiredDescription
URL--urlStringURL of webhook or a Bitrix24 domain, when token used
ChatID--chatString, NumberChat 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: im.chat.mute


1C:Enterprise/OneScript code example
URL = "https://b24-ar17wx.bitrix24.by/rest/1/av5...";
ChatID = "3390";

Result = OPI_Bitrix24.DisableChatNotifications(URL, ChatID);

URL = "b24-ar17wx.bitrix24.by";
Token = "a5b00469006e9f06006b12e400000001000...";
ChatID = "3392";

Result = OPI_Bitrix24.DisableChatNotifications(URL, ChatID, Token);
oint bitrix24 DisableChatNotifications \
--url "b24-ar17wx.bitrix24.by" \
--chat "***" \
--token "***"
Result
{
"result": true,
"time": {
"start": 1779804848,
"finish": 1779804848.04607,
"duration": 0.0460669994354248,
"processing": 0,
"date_start": "2026-05-26T14:14:08+00:00",
"date_finish": "2026-05-26T14:14:08+00:00",
"operating_reset_at": 1779805448,
"operating": 0
}
}