Skip to content
This repository has been archived by the owner on Sep 19, 2022. It is now read-only.

Latest commit

 

History

History
47 lines (37 loc) · 785 Bytes

README.md

File metadata and controls

47 lines (37 loc) · 785 Bytes

Active Campaign v3 PHP Wrapper

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