thiio / active-campaign-php-sdk
This is a SDK built in PHP for consuming Active Campaing's v3 API as detailed in https://www.activecampaign.com/
0.0.2
2023-11-29 20:32 UTC
Requires
- guzzlehttp/guzzle: ^7.0
Requires (Dev)
- phpunit/phpunit: ^7
This package is not auto-updated.
Last update: 2025-02-06 17:56:09 UTC
README
Implementation for consuming ActiveCampaign's v3 API
Note:
This is a beta version for this library, the main goal is to consume the ActiveCampaign's V3 API.
Required
An ActiveCampaign's account is required. You can sign up https://www.activecampaign.com/
Installation
Models Implemented
- Contacts
- Tags
- Lists
- Group List
- Connections
- E-Commerce Customers
- E-Commerce Orders
Example of using this library
//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(); }