darvinstudio/darvin-bitrix24-bundle

This bundle provides Bitrix24 integration for Symfony-based applications.

6.2.5 2021-08-24 07:08 UTC

This package is auto-updated.

Last update: 2024-03-24 12:56:33 UTC


README

This bundle provides Bitrix24 integration for Symfony-based applications.

Usage

use Darvin\Bitrix24Bundle\Client\ClientInterface;
use Darvin\Bitrix24Bundle\Lead\LeadFactoryInterface;
use Darvin\Bitrix24Bundle\Model\CRM\ProductRow;
use Darvin\Bitrix24Bundle\Request\Command\Factory\CRM\LeadCommandFactoryInterface;
use Darvin\Bitrix24Bundle\Request\Request;

public function __construct(
    ClientInterface $client,
    LeadCommandFactoryInterface $leadCommandFactory,
    LeadFactoryInterface $leadFactory
) {
    $this->client = $client;
    $this->leadCommandFactory = $leadCommandFactory;
    $this->leadFactory = $leadFactory;
}

$request = new Request();
$request->addCommand($this->leadCommandFactory->createAddCommand($this->leadFactory->createLead('test')));
$request->addCommand($this->leadCommandFactory->createSetProductRowsCommand(new ProductRow(1)));

$result = $this->client->send($request);