Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Active Campaign v3 PHP Wrapper

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

About

Active Campaign v3 PHP Wrapper

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages