Git Product home page Git Product logo

activecampaign-api-v3-wrapper's Introduction

ActiveCampaign API v3 Wrapper

Wrapper for ActiveCampaign API v3.
Allows to make calls in ActiveCampaign services and work with data, using PHP. Simple and easy to use.
Services available so far:

  • Lists
  • Contacts
  • Tags

Official API documentation

https://developers.activecampaign.com/v3/reference

Installation

ActiveCampaign API v3 Wrapper is available on Packagist. Just add this line to your composer.json file in require section

"dhrechanyi/activecampaign-api-v3-wrapper": "^1.0"

or open terminal window and run

composer require dhrechanyi/activecampaign-api-v3-wrapper

Usage

Wrapper allows you to chain methods and use singe instance to apply all needed filters and queries.

Setup

<?php

// include required classes
require 'vendor/autoload.php';

// add namespace
use Dhrechanyi\ActiveCampaign\ActiveCampaign;

// create wrapper instance
$ac = new ActiveCampaign('YOUR_ACTIVE_CAMPAIGN_URL', 'YOUR_ACTIVE_CAMPAIGN_KEY');

Get service models

To get access to activecampaign api endpoints, you need to create service model first. Here is how you can do it:

// lists
$lists = $ac->lists();

// contacts
$contacts = $ac->contacts();

// tags
$tags = $ac->tags();

Basic example

To retrieve all lists, call for the ->all() method. This method should be always at the very end of your chain sequence:

$lists = $ac->lists()->all();

Note that by default, activecampaign api returns 20 items. To change that, you need to use pagination() method

Pagination

https://developers.activecampaign.com/v3/reference#pagination
Pagination allows you to get needed amount of items and make offsets.

// ->paginate($limit, $offset = 0)

// fetch 50 lists
$paginated_lists = $ac->lists()->paginate(50)->all();

Sorting

https://developers.activecampaign.com/v3/reference#section-ordering
You can sort results in needed order. Use ->orderby() method and pass as argument an array, where key is the name of field and value is order (asc or desc).

// get all contacts and sort them by email in asc order and by last name in desc order
$contacts = $ac->contacts()->order(['email' => 'asc', 'lastName' => 'desc'])->all();

Filtering

https://developers.activecampaign.com/v3/reference#section-filtering
You can filter results by multiple parameters. Use ->filter() method and pass an array as argument, where key is parameter name and value is parameter value.

// get contacts where first name is equal to John
$contacts = $ac->contacts()->filter(['firstName' => 'john'])->all();

URL Queries

Additionaly, you can add any parameter to url that will be send to activecampaign endpoint. Use ->query() method and pass as argument an array with parameters key and value

$ac->tags()->query(['foo' => 'bar'])->all();

Get item by ID

To access any item by it's ID, use ->get($id) method.

// get tag with ID == 1
$tag = $ac->tags()->get(1);

Advanced examples

// skip 10 tags and get next 50 tags, also order them by description
$tags = $ac->tags()->orderby(['description' => 'asc'])->paginate(50, 10)->all();

// get contact where email is equal to '[email protected]'
$contact = $ac->contacts()->getByEmail('[email protected]');

// create new contact
$ac->contacts()->create([
  'email'     => '[email protected]',
  'firstName' => 'John',
  'lastName'  => 'Doe',
  'phone'     => '7223224241'
]);

// create new tag
$ac->tags()->create([
  'tag'         => 'My Tag',
  'tagType'     => 'contact',
  'description' => 'Description'
]);

// add tag to contact
$ac->contacts()->addTag([
  'contact' => '1', // contact ID
  'tag'     => '20' // tag ID
]);

Available methods

Lists

https://developers.activecampaign.com/v3/reference#lists

Method Description
get($list_id) Get list by ID
all() Get all lists
create($params) Create list https://developers.activecampaign.com/reference#create-new-list
createGroup($params) Create list group permission https://developers.activecampaign.com/reference#create-a-list-group-permission
delete($list_id) Delete list by ID

NOTE: When creating a new list, it is important to then associate that list to a group permission

Contacts

https://developers.activecampaign.com/v3/reference#contact

Method Description
get($contact_id) Get contact by ID
getByList($list_id) Get contacts by list ID
getByTag($tag_id) Get contacts by tag ID
getByEmail($email) Get contact by email
all() Get all contact
create($params) Create contact https://developers.activecampaign.com/reference#create-contact
createOrUpdate($params) Create contact or update if it's already exists (sunc by email) https://developers.activecampaign.com/reference#create-contact-sync
update($contact_id, $params) Update contact https://developers.activecampaign.com/reference#update-a-contact
delete($contact_id) Delete contact by ID
getCustomFieldValue($custom_field_id) Get custom field value
allCustomFieldValues() Get all custom fields values
createCustomFieldValue($params) Create custom field value https://developers.activecampaign.com/reference#retrieve-fields
addTag($params) Add tag to contact https://developers.activecampaign.com/reference#create-contact-tag
deleteTag($contact_tag_id) Delete tag from contact
getTags($contact_id) Get all contact's tags
getLists($contact_id) Get all contact's lists
updateListStatus($params) Update list status on contact https://developers.activecampaign.com/reference#update-list-status-for-contact
getContactFieldValues($contact_id) Get contact field values
updateCustomFieldValue($custom_field_id, $params) Update contact custom field value

Tags

https://developers.activecampaign.com/reference#tags

Method Description
get($tag_id) Get tag by ID
all() Get all tags
create($params) Create tag https://developers.activecampaign.com/reference#create-a-new-tag
update($tag_id, $params) Update tag https://developers.activecampaign.com/reference#update-a-tag
delete($tag_id) Delete tag by ID

activecampaign-api-v3-wrapper's People

Contributors

dhrechanyi avatar nilsminten avatar

Stargazers

 avatar

Watchers

 avatar  avatar

activecampaign-api-v3-wrapper's Issues

Client error

Hey
I get this error:
Client error: GET https://[account_name].api-us1.com/contacts?filters%5BfirstName%5D=jesper resulted in a 404 Not Found response:
(truncated...)

Could you help me with this? properly pretty basic stuff.

// include required classes
require_once dirname(dirname(__FILE__)).'/activeampaign-api-uni/vendor/autoload.php';

// add namespace
use Dhrechanyi\ActiveCampaign\ActiveCampaign;

// create wrapper instance
$ac = new ActiveCampaign('https://[account_name].api-us1.com', '[api_key]');


$lists = $ac->lists();

// contacts
$contacts = $ac->contacts();

// tags
$tags = $ac->tags();

//$contact = $ac->contacts()->getByEmail('[email]');
$contacts = $ac->contacts()->filter(['firstName' => 'jesper'])->all();

Guzzle Version

Hello, I'm trying to install this in a Laravel project that already has guzzle loaded on a newer version:

"guzzlehttp/guzzle": "^7.4",

Would it be possible to update your library to a current version of Guzzle?

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.