With ActiveCampaign's API, you can build a variety of integrations and applications to help streamline your business. Here are just a few examples:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
activecampaign: {
type: "app",
app: "activecampaign",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.activecampaign.$auth.base_url}/api/3/accounts`,
headers: {
"Api-Token": `${this.activecampaign.$auth.api_key}`,
},
})
},
})
Emit new event each time an automation sends out webhook data.
Emit new event when a contact email address bounces from a sent campaign.
Emit new event when a link from a campaign is clicked (will only run once for each unique link).
Emit new event when a contact opens a campaign (will trigger once per contact per campaign).
Emit new event each time a campaign starts sending.
ActiveCampaign uses API keys for authentication. When you connect your ActiveCampaign account, Pipedream securely stores the keys so you can easily authenticate to ActiveCampaign APIs in both code and no-code steps.
You can find your Base URL and API Key in your Developer Settings in your account. See the ActiveCampaign API docs for more info.