Skip to main content

ActiveCampaign API client

Project description

Simple and Pythonic ActiveCampaign API client

  • Free software: BSD license

Features

  • View & sync a contact

  • Add a contact tag

  • Remove a contact tag

Basic usage

Initialize the client with your custom ActiveCampaign host name and API key:

from activecampaign.client import ActiveCampaignClient
client = ActiveCampaignClient(ACTIVECAMPAIGN_HOST, ACTIVECAMPAIGN_KEY)

Sync contact information:

client.contacts.sync(
    email=customer_data['email'],
    first_name=customer_data['first_name'],
    last_name=customer_data['last_name'],
    orgname=custmoer_data['orgname'],
    phone=customer_data['phone'],
)

Add and remove tags:

client.contacts.tag_add("new-tag", email=customer_data['email'])
client.contacts.tag_remove("old-tag", email=customer_data['email'])

History

0.2.0 (2019-07-09)

  • Dropped support for Python 2.7

0.1.0 (2016-02-22)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

activecampaign-0.2.0.tar.gz (12.6 kB view hashes)

Uploaded Source

Built Distribution

activecampaign-0.2.0-py2.py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page