I would like to send new user registered on Bubble app to Active campaign (CRM Tool I am using)
I installed the API integrator plugin. I am getting 403 Error upon initialtzing a GET or POST API Call
Setup:
Authentication . Private key in header
Gave the Key name as Authorization and key value which I got from Active campaign
3: Get request
4: Gave the URL from Active campaign
5: Data type JSON
{
“contact”: {
“email”: “johndoe@example.com”,
“firstName”: “John”,
“lastName”: “Doe”,
“phone”: “7223224241”,
“fieldValues”:[
{
“field”:“1”,
“value”:“The Value for First Field”
},
{
“field”:“6”,
“value”:“2008-01-20”
}
]
}
}
I wonder do I need to also configure anything on Active campaign? Or only porting the key into Bubble API integrator should work? I looked at a few YT vidoes and no where there was a mention of configuring anything on the APP side where the data will be stored.
Since it looks like a 403 error which in Active Campaign states an error with authentication:
From initial glance, it looks like you need a Shared Header called, “Api-Token” with its value as your API key.
Your API key can be found in your account on the Settings page under the "Developer" tab. Each user in your ActiveCampaign account has their own unique API key.
I’m not familiar with Active Campaign, but by looking at their API documentation, it looks like to add a contact you need to follow their instructions here and add a POST request into your API connector.