jetimob / activecampaign-v3-php
PHP Wrapper for ActiveCampaign
v3.0.0
2022-08-25 20:39 UTC
Requires
- php: ^8.0
- ext-json: *
- guzzlehttp/guzzle: ^7.4
Requires (Dev)
- phpunit/phpunit: ^9.0
README
Unofficial PHP Wrapper for ActiveCampaign API v3.
Installation:
composer require jetimob/activecampaign-v3-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