felp/active-campaign-php

dev-master 2019-05-24 19:16 UTC

This package is auto-updated.

Last update: 2024-09-25 07:22:44 UTC


README

Active Campaign 的 PHP 客户端

支持 API REST V3 和 V1(不使用 REST)

Composer

composer require felp/active-campaign-php

安装

composer install

使用

添加潜在客户

<?php 

$data['contact']['email'] = 'test@test.com.br';
$data['contact']['org'] = 'test';
$data['contact']['2'] = 'test@test.com.br';

 $ac = new ActiveCampaign();
 $ac->setApiVersion(3);
 $ac->setApiKey('*');
 $ac->setApiUrl('*')
 $ac->insertLead($data);