Views: 4369
Last Modified: 23.03.2022

The method specifies user status

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

Parameters

Parameter Example Req. Description Revision
STATUS online Yes New user status 18

The following statuses are available:

  • online – Online
  • dnd – Do not disturb
  • away – Away

Method call

JavaScript

BX24.callMethod('im.user.status.set', {}, function(result){
	if(result.error())
	{
		console.error(result.error().ex);
	}
	else
	{
		console.log(result.data());
	}
});

PHP

$result = restCommand('im.user.status.set', Array(
), $_REQUEST["auth"]);

Example of response

{
  "result": true
}

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.





Courses developed by Bitrix24