Skip to content

Instantly share code, notes, and snippets.

@VSeryoga
Created July 26, 2018 08:24
Show Gist options
  • Save VSeryoga/3b2a23eda32248e821dd15c3b633c61a to your computer and use it in GitHub Desktop.
Save VSeryoga/3b2a23eda32248e821dd15c3b633c61a to your computer and use it in GitHub Desktop.
Битрикс24 коробка api
<?
if (\Bitrix\B24Connector\Connection::isExist())
{
if ($client = \Bitrix\Socialservices\ApClient::init())
{
$result = $client->call('crm.dealcategory.list', array(
'filter' => array(
'IS_LOCKED' => 'N'
),
'order' => array(
'SORT' => 'ASC'
)
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment