Views: 2137
Last Modified: 13.05.2022
Chatbot changes a chat owner
Attention! restCommand function is used here for illustration purposes only. It is taken from the
EchoBot example. You can send a REST command with your own function, or use the
BX24.callMethod or
bitrix24-php-sdk methods.
Method call
$result = restCommand('imbot.chat.setOwner', Array(
'CHAT_ID' => 13 // Chat ID
'USER_ID' => '2' // New chat owner ID
'BOT_ID' => 39, // Chatbot ID from which the request is sent. May not be specified, if there is only one chatbot
), $_REQUEST["auth"]);
Return:
true
or error.
Possible error codes
Code |
Description |
CHAT_ID_EMPTY |
Chat ID was not transmitted. |
USER_ID_EMPTY |
New chat owner ID was not transmitted. |
WRONG_REQUEST |
Method is called by user without owner's rights or indicated user is not a chat participant. |
|