bitrix24-php-sdk
bitrix24-php-sdk copied to clipboard
A powerful PHP library for the Bitrix24 REST API
Hey guys, this is not exactly an issue, just a doubt Is that possible to send notifications from third-party software through Bitrix (using Bitrix whatsApp integration) ? This is a...
### Publish bitrix24-php-sdk beta 3 ### Added - [x] #358 - [x] #376 - [x] #293 ### Changed - [ ] #390 - [x] #383 - [x] #384 - [x]...
public function __get($offset) { switch ($offset) { case 'TIME_ZONE_OFFSET': return (int)$this->data[$offset]; case 'LAST_LOGIN': case 'DATE_REGISTER': case 'UF_EMPLOYMENT_DATE': if ($this->data[$offset] !== '') { return DateTimeImmutable::createFromFormat(DATE_ATOM, $this->data[$offset]); } break; case 'IS_ONLINE': return...
https://github.com/mesilov/bitrix24-php-sdk/tree/master/src/Services/Telephony 1. Update existing services 2. Add code for methods in scope woximplant 3. Update tests
Bitrix24\SDK\Services\Telephony\Requests\Events\OnExternalCallBackStart -> Bitrix24\SDK\Services\Telephony\Requests\Events\OnExternalCallBackStart\OnExternalCallBackStart
https://github.com/mesilov/bitrix24-php-sdk/tree/master/src/Application/Contracts/Bitrix24Account
- get list of bizproc - run bizproc
public function get(array $order, array $filter, bool $isAdminMode = false): UsersResult { return new UsersResult($this->core->call('user.get', [ 'sort' => array_keys($order)[0], 'order' => array_values($order)[0], 'filter' => $filter, 'ADMIN_MODE' => $isAdminMode ? 'true'...
- add Methods for check company/lead - add Methods for results for company/lead - add Method hasMatches - Checks if there are any matches for a given entity type. -...