obuchmann/bitrix-api

PHP library to access Bitrix24 via incomming webhoook API

v1.1.4 2023-07-04 14:45 UTC

This package is auto-updated.

Last update: 2024-05-04 16:36:23 UTC


README

PHP library to access Bitrix24 via incomming webhoook API

Usage

use Obuchmann\BitrixApi\BitrixApi;

class YourClass {
    public function __construct(
        private BitrixApi $api,        
    )
    {}
    
    public function getCompanies(){
        return $this->api->request('crm.company.list')->select([            
            "TITLE",
        ])->all();
    }  
}