This package provides a PHP SDK for the ActiveCampaign API (v3).
It is inspired by the code style of Laravel's Forge SDK.
For more information on the ActiveCampaign API, refer to their developer documentation.
This package can be installed through Composer:
$ composer require testmonitor/activecampaign
Make sure to use Composer's autoload:
require __DIR__.'/../vendor/autoload.php';
Start by creating a new instance:
$activeCampaign = new ActiveCampaign(ACTIVE_CAMPAIGN_URL, ACTIVE_CAMPAIGN_KEY);
Your API key can be found in your account on the Settings page under the "Developer" tab.
Once instantiated, you can simply call one of the methods provided by the SDK:
$activeCampaign->contacts();
This will provide you with a list of available contacts.
To create a contact, you can use the createContact
method:
$contact = $activeCampaign->createContact(
'email' => 'johndoe@example.com',
'firstName' => 'John',
'lastName' => 'Doe',
);
When the request was successful, $contact
will contain a Contact object with the contact details.
To retrieve an existing contact or create it when it is missing:
$contact = $activeCampaign->findOrCreateContact(
'email' => 'johndoe@example.com',
'firstName' => 'John',
'lastName' => 'Doe',
);
When the request was successful, $contact
will contain a Contact object with the contact details.
The package contains integration tests. You can run them using PHPUnit.
$ vendor/bin/phpunit
Refer to CHANGELOG for more information.
Refer to CONTRIBUTING for contributing details.
The MIT License (MIT). Refer to the License for more information.