You can install active-campaign-python by downloading the source.
Click here to download the source (.zip) which includes all dependencies.
from includes.ActiveCampaign import ActiveCampaign
Fill in your URL and API Key in the includes/Config.py
file, and you are good to go!
from includes.Config import ACTIVECAMPAIGN_URL, ACTIVECAMPAIGN_API_KEY
from includes.ActiveCampaign import ActiveCampaign from includes.Config import ACTIVECAMPAIGN_URL, ACTIVECAMPAIGN_API_KEY ac = ActiveCampaign(ACTIVECAMPAIGN_URL, ACTIVECAMPAIGN_API_KEY) print ac.api('account/view')
See our examples file or the comments from files in includes folder for more in-depth samples.
- A valid ActiveCampaign hosted account (trial or paid).