Help with Active Campaign API implementation. Questions on API requests, etc.
Questions tagged [activecampaign]
54 questions
8
votes
3 answers
How to add a contact to a list in ActiveCampaign API v3
According to v3 docs I should be able to add a contact to a list using the Contact API but I am at a loss on how to do so as I see nothing list related under Contacts.
How do I add a contact to a list (not through automations) using version 3 of the…

cyberwombat
- 38,105
- 35
- 175
- 251
3
votes
1 answer
Error in activecampaign api while creating or updating contact
I am trying to create a contact using "create or update api" from here: https://developers.activecampaign.com/reference#create-or-update-contact-new
I tried calling the cURL command which gives a proper response but while doing it from axios it…

onkar javalgi
- 31
- 3
3
votes
1 answer
ActiveCampaign axios post request returns 422
This is the object and the post request
let contactObject = {
contact: {
email: "jsmith@example.com",
firstName: "John",
lastName: "Smith"
}
};
const options = {
method: 'POST',
headers: {
…

Robert
- 41
- 4
3
votes
1 answer
Active Campaign API: How to 'create or update contact' along with their custom field values?
I’m using Node js, and I can create/update a contact’s email, name, or phone number. But the custom fields I have never get updated. Here’s what I got so far.
var data = JSON.stringify({
"contact": {
"email": "t@brady.com",
…

Magdi Gamal
- 681
- 1
- 9
- 25
3
votes
0 answers
what to get workflow id from campaign in Mailchimp to get customer details?
I need to get workflow id of campaign as we scheduled the drip mails in mailchimp. Each mail is having separate work flow id ,how to get the workflow id of campaign and details about customer mail id,date and time when the mail sent and its status…

DotNetUser
- 415
- 3
- 18
2
votes
0 answers
Active Campaign API Error - Use Web Interface Error
I just tried running the api to send a campaign message but I got the following error
0
Please send this campaign through the web…

Remo Bajwa
- 513
- 6
- 19
2
votes
2 answers
PHP curl conversion to coldfusion chfttp
I am looking at this example of activecampaign's event tracking
curl_setopt($curl, CURLOPT_URL, "https://trackcmp.net/event");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl,…

Matthew Friedman
- 491
- 1
- 5
- 12
2
votes
2 answers
Contact is not getting listed using ActiveCampaign API if no lists are assigned
I am using ActiveCampaign API to list all contacts from account, but API returns only contacts which has at-least one lists assigned. My account contains around 159 contacts with 'has records' tag assigned, out of which 133 contacts has no lists…

Vinay Patil
- 736
- 6
- 19
1
vote
0 answers
Error 403 with POST using ActiveCampaign API- trying to add contact, valid API key
From my understanding by Googling the 403 error means the API key is right but access is forbidden? But I'm not really 100% sure what that means or how to resolve it.
Below is my code that triggers when I press a button (I've manually added the…

Jacob Johnson
- 551
- 1
- 6
- 20
1
vote
0 answers
How to add SharePoint list data or Google sheet to Active Campaign lists?
I am using SharePoint Online lists as a backend. I have requirements like when users add data to the SharePoint list, the same data needs to be added to the Active Campaign lists. There is no direct connector for Active Campaign under Power…

thedeepponkiya
- 97
- 1
- 11
1
vote
0 answers
Active Campaign - Newsletter using NodeJs
I am getting an error when submitting my newsletter app using NodeJs. I can't even add the dummy data. I am still learning and appreciate if you can send any reference for my concern.
Please see code below
const express = require("express");
const…

xargs
- 11
- 1
1
vote
3 answers
How to get key value pairs of the objects from complex JSON using jq and map? (Active Campaign)
I have following JSON. I want to get key-value pair objects based on their role. In this example there are 3 roles(Presenter, Approver, Customer) but there can be more as it is dynamic.
JSON
{
"Presenter Name": "Roney",
"Presenter Email":…

NJ Bhanushali
- 901
- 1
- 12
- 21
1
vote
1 answer
How to track event for Event Tracking Activecampaign
may I ask how to track the specific event with the event tracking ActiveCampaign code?`
For example, if I want to track button clicks on my own website, how do I add on in this php sample code here.
Thank you.

Ellenfih
- 11
- 4
1
vote
0 answers
Cross Domain Tracking, My google Tag Manager [Decorate Form = True] its not working
I wanna cross domain tracking, 2 domains [google->Landing page(domain_1)->Website(Domain_2), I did follow some tutorials that set a variable on Google Tag Manager[Img bellow] to Google Analytics.
The issue is works just fine for links but my not to…

Rhag
- 13
- 3
1
vote
0 answers
Issue while obtaining data from API with a different result depending on origin of request
First of all I am not asking for API-specific help before anyone implies that. I am having a strange issue while consulting Active Campaign's API.
There's a specific endpoint I am using that is the GET contacts endpoint. Normally I don't have any…

Mihail Minkov
- 2,463
- 2
- 24
- 41