inspirum / active-campaign-php
PHP Wrapper for ActiveCampaign
v1.0.3
2020-08-19 08:13 UTC
Requires
- guzzlehttp/guzzle: ~6.3
Requires (Dev)
- phpunit/phpunit: ^7
This package is auto-updated.
Last update: 2024-10-19 16:59:33 UTC
README
Unofficial PHP Wrapper for ActiveCampaign API v3.
Installation:
composer require inspirum/active-campaign-php
Basic usage:
Create a client:
$client = new Client( $api_url, $api_token, $event_tracking_actid, $event_tracking_key );
Select Contacts endpoint:
$contacts = new Contacts($client);
Create new contact:
$contact = $contacts->create([ 'email' => 'CONTACT_EMAIL', 'firstName' => 'CONTACT_FIRST_NAME', 'lastName' => 'CONTACT_LAST_NAME' ]);
Available endpoints:
- Contacts
- Deals
- Lists
- Organizations
- EventTracking
- SiteTracking
ActiveCampaign Developer Documentation
Official API docs: https://developers.activecampaign.com/reference