obuchmann/bitrix-api

PHP library to access Bitrix24 via incomming webhoook API

Installs: 955

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/obuchmann/bitrix-api

v1.1.5 2024-06-20 15:45 UTC

This package is auto-updated.

Last update: 2025-10-20 18:50:52 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();
    }  
}