Views: 5224
Last Modified: 23.03.2022
The method disables automatic status "Away"
Revision: 18
Get information on the current API revision (platform version) – im.revision.get.
Parameters
None
Method call
JavaScript
BX24.callMethod('im.user.status.idle.end', {}, function(result){
if(result.error())
{
console.error(result.error().ex);
}
else
{
console.log(result.data());
}
});
PHP
$result = restCommand('im.user.status.idle.start', 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.