Views: 1797
Last Modified: 30.08.2018
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! The method is specified with using of the
restCommand function. This method is used to send data in
Bitrix24 and is available in the
EchoBot example as well as in this article. You can use your own function or
BX24.callMethod, or
bitrix24-php-sdk JavaScript methods.