New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

activecampaign

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

activecampaign

ActiveCampaign API client

pipPyPI
Version
0.2.0
Maintainers
1

================= ActiveCampaign.py

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.

Keywords

activecampaign

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts