https://github.com/apphp/activecampaign-api-wrapper
Super simple wrapper for ActiveCampaign API 3.0
https://github.com/apphp/activecampaign-api-wrapper
api avtivecampaign php wrapper
Last synced: 3 months ago
JSON representation
Super simple wrapper for ActiveCampaign API 3.0
- Host: GitHub
- URL: https://github.com/apphp/activecampaign-api-wrapper
- Owner: apphp
- License: lgpl-3.0
- Created: 2019-04-28T08:43:59.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-28T09:18:46.000Z (about 6 years ago)
- Last Synced: 2025-02-23T05:46:29.731Z (3 months ago)
- Topics: api, avtivecampaign, php, wrapper
- Language: PHP
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
ApPHP ActiveCampaign API Wrapper
===============================Thank you for choosing ApPHP ActiveCampaign API Wrapper
ActiveCampaign website: https://www.activecampaign.com/
ActiveCampaign API: https://developers.activecampaign.com/referenceINSTALLATION
------------
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 fileREQUIREMENTS
------------
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
------------
- https://www.apphp.com/
- http://www.apphpframework.com
- https://github.com/apphp/activecampaign-api-wrapperUSAGE (example):
------------
```PHP
'',
'api_key' => '',
);
$activeCampaign = new ActiveCampaign($config);$id = 3;
$contacts = $activeCampaign->getContact($id);?>
```