dragonmantank/activecampaign

An ActiveCampaign v3 Client

dev-main 2022-09-28 17:58 UTC

This package is auto-updated.

Last update: 2024-03-28 21:01:10 UTC


README

Installation

This package requires the use of Composer to install.

$ composer require dragonmantank/activecampaign

Usage

$accountUrl = 'https://<company>.api-us1.com';
$accountKey = 'abcd';

$client = new Dragonmantank\ActiveCampaign\Client($accountUrl, $accountKey);

// Example to get contacts
$response = $client->get('contacts');