Views: 1782
Last Modified: 23.03.2022

Changes chat owner

Revision Get current information about current API revision (platform version) – im.revision.get : 18

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.

Parameters

Parameter Example Required Description Revision
CHAT_ID 13 Yes Chat ID 18
USER_ID 2 Yes New chat owner ID 18

Called method and response

PHP

$result = restCommand('im.chat.setOwner', Array(

   'CHAT_ID' => 13,
   'USER_ID' => '2'

), $_REQUEST["auth"]);

Example of response

{
	"result": true
}

Example of response on error

{
    "error": "CHAT_ID_EMPTY",
    "error_description": "Chat ID is not passed"
}

Key description:

  • error – error code
  • error_description – error brief description

Possible error codes

Code Description
CHAT_ID_EMPTY Chat ID not passed
USER_ID_EMPTY New chat owner ID is not passed
WRONG_REQUEST Method is called by a regular non-owner chat participant or specified user is not a chat participant



Courses developed by Bitrix24