ActiveCampaign has been brought up a couple times but no solutions.
I’m trying to send the data from the Webflow Form to ActiveCampaign WITHOUT using Zapier.
So, I set the form to POST and I input the form’s action URL (Similar to the way you’d do this for Mailchimp).
Problem is, when I click submit, all it does it redirect me to the admin area of ActiveCampaign, and still doesn’t send the data.
@Jal10c As far as I can tell, without using Zapier you are going to have to use some sort of middleman app to pass the data between the two systems, otherwise you are going to publicly expose your API key, which isn’t a good thing to do.
Essentially using something like Heroku and a small Python script to receive a form post from Webflow, then authenticate with ActiveCampaign and post the data as JSON using the create/update contact api endpoint:
I’ve got this to work successfully by just using the POST feature on the form. You have to make sure that each field ID and Name matches the ID and Name of the fields on the target form.
Hey @crsmoore, sorry I actually don’t really remember. I believe I had dev help when I did it.
In my last reply, looks like I was sending form data from a webflow form, to a target form on another app/page.
Regarding the field IDs and names, we had to make sure that the field IDs and names on the target form matched the respective field ID/name on the Webflow form.
What happens when the form is submitted? In my case a new page is opened for the webhook, and after that I just see the JSON response, it doesn’t trigger a success in webflow itself.