activecampaign-python icon indicating copy to clipboard operation
activecampaign-python copied to clipboard

ActiveCampaign API wrapper written in python.

Results 8 activecampaign-python issues
Sort by recently updated
recently updated
newest added

When I call the following function: client.contacts.list_all_contacts(tagid=40) I get an erroneous results. When calling the function using the emails or ids parameter I appear to get accurate results. Is the...

Only the create tag call is documented well. Everything else that's tag-related in README gives you `client.webhook.*` as an example instead of `client.tags.*`.

Hello! I am looking for a way to send campaigns via their API. The version 3 API documentation does not say anything about that. Can I use this to send...

Relevant traceback: ``` File "/usr/local/lib/python3.8/site-packages/activecampaign/contacts.py", line 16, in create_a_contact return self.client._post("/contacts", json=data) File "/usr/local/lib/python3.8/site-packages/activecampaign/client.py", line 37, in _post return self._request('POST', endpoint, **kwargs) File "/usr/local/lib/python3.8/site-packages/activecampaign/client.py", line 54, in _request return self._parse(requests.request(method,...

Hola a todos: Estoy usando data = {"contact": {"email": email}} response = client.contacts.create_or_update_contact(data) if response['contact']['id']: en algunas ocasiones me entrega este error en el if ->TypeError: string indices must be...

Hi, I have created a custom field in Date format. How do I update this field to a contact via API? The field I'm trying to update is field [17]....

Hello, I'm receiving the following error on the below methods: Error: ```Traceback (most recent call last): File "/Users/user/Desktop/github/ac_project/main.py", line 49, in response = ac_client.contacts.create_a_contact(data) File "/Users/user/Desktop/github/ac_project/venv/lib/python3.8/site-packages/activecampaign/contacts.py", line 16, in create_a_contact...

I'm implemented 3 methods in the deepdatainegration and corrected a typo in one of them (missing an "s" for plural).