Views: 5685
Last Modified: 23.03.2022
The method gets information on the specified user status
Revision: 18
Get information on the current API revision (platform version) – im.revision.get.
Parameters
None
Method call
JavaScript
BX24.callMethod('im.user.status.get', {}, function(result){
if(result.error())
{
console.error(result.error().ex);
}
else
{
console.log(result.data());
}
});
PHP
$result = restCommand('im.user.status.get', Array(
), $_REQUEST["auth"]);
Example of response
{
"result": "dnd"
}
Description of result:
online
– Online
dnd
– Do not disturb
away
– Away
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.