Skip to content

apphp/activecampaign-api-wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ApPHP ActiveCampaign API Wrapper

Thank you for choosing ApPHP ActiveCampaign API Wrapper ActiveCampaign website: https://www.activecampaign.com/ ActiveCampaign API: https://developers.activecampaign.com/reference

INSTALLATION

Please make sure the release file is unpacked under a web-accessible directory. You will see the following files and directories:

ActiveCampaign.php  API wrapper classdemo applications
example.php         file with code example
CHANGELOG           describing changes in every ApPHP release
LICENSE             license file
README              this file

REQUIREMENTS

The minimum requirement by this class is that your Web server supports PHP 5.4.0 or above. It has been tested with Apache HTTP server on Windows and Linux operating systems.

The ApPHP Developer Team

USAGE (example):

<?php

use \Apphp\ActiveCampaign\ActiveCampaign;

require_lib('vendors/active_campaign/ActiveCampaign');

# Create new object
$config = array(
	'api_url'	=> '<API-URL>',
	'api_key'	=> '<API-KEY>',
);		
$activeCampaign = new ActiveCampaign($config);

$id = 3;
$contacts = $activeCampaign->getContact($id);

?>

About

Super simple wrapper for ActiveCampaign API 3.0

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages