1. Go to this page and download the library: Download techart/amocrm library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
techart / amocrm example snippets
// Основной метод для отправки лида и привязки его к нужному контакту
public function sendLead(
$leadName,
$email = '',
$phone = '',
$contactName = '',
$leadFields = [],
$leadCustomFields = [],
$contactCustomFields = []
);
// Находит или создает контакт с переданными параметрами. Если котакт существует, то обновляет его данные при необходимости
public function getOrCreateContact($email, $phone, $name, $customFields = []);
// Создает лид и привязывает его к переданному контакту
public function createLead($name, $contactId, $fields = [], $customFields = []);
// Ищет контакт по переданным параметрам (по очереди использует их в качестве параметра `query` до первого найденного элемента)
public function findContact($attributes);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.