Views: 2312
Last Modified: 30.08.2018
im.revision.get
The method gets information about API revisions
Revision: 18
Parameters
None.
Call example
JavaScript
BX24.callMethod('im.revision.get', {}, function(result){
if(result.error())
{
console.error(result.error().ex);
}
else
{
console.log(result.data());
}
});
PHP
$result = restCommand('im.revision.get', Array(
), $_REQUEST["auth"]);
Example of response
{
"result": {
"rest": 18,
"web": 117,
"mobile": 9,
}
}
Description of keys:
rest
– API revision for REST clients
web
– API revision for web/desktop client
mobile
– API revision for mobile client
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.