dan-farley/activecampaign-v3-php

PHP Wrapper for ActiveCampaign

v1.3 2020-12-24 16:31 UTC

This package is not auto-updated.

Last update: 2024-05-10 08:04:44 UTC


README

Unofficial PHP Wrapper for ActiveCampaign API v3.

Installation:

composer require mediatoolkit/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