webforcehq / activecampaign-v3-api-php
ActiveCampaign API V3 的 PHP 封装
v2.0.4
2023-10-23 16:27 UTC
Requires
- guzzlehttp/guzzle: ^7.0
Requires (Dev)
- phpunit/phpunit: ^7
README
用于消费 ActiveCampaign v3 API 的实现
注意
这是该库的测试版,主要目标是消费 ActiveCampaign 的 V3 API。
要求
需要 ActiveCampaign 账户。您可以在 https://www.activecampaign.com/ 注册
安装
composer require webforcehq/activecampaign-v3-api-php
已实现模型
- 联系人
- 标签
- 列表
- 分组列表
- 连接
- 电子商务客户
- 电子商务订单
使用此库的示例
//YOUR ACTIVE CAMPAIGN CREDENTIALS $url = "<https://YOUR_USER.api-us1.com>"; $key = "<YOUR_TOKEN_KEY>"; //Initialize a new instance of active campaign library class $client = new ActiveCampaign(); $client->initialize($url, $key); /* Instanciate a contact model and add values to the attributes specified on: https://developers.activecampaign.com/reference#contact */ $contact = new ActiveCampaignContact(); $contact->setEmail("jhon_doe@gmail.com"); $contact->setFirstName("Jhon"); $contact->setLastName("Doe"); $contact->setPhone("+529985656464"); //Fetch contacts class and perform the create request $contacts = $client->contacts(); try{ //Perform create request sending the contact model $response = $contacts->create($contact); //If response success var_dump all content if($response->success){ echo "Contact successfully created \n"; var_dump($response->body->contact); }else{ //If any error or message is present print it out if(isset($response->body->message)){ echo $message; } if(isset($response->body->errors)){ foreach($response->body->errors as $error){ echo $error->title."\n"; echo $error->detail."\n"; echo $error->code."\n"; } } } }catch(Exception $e){ echo $e->getMessage(); }