Trusted by 250,000+ developers from startups to Fortune 500 companies:
This is a pre-built, open source component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.
To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.
ActiveCampaign - Remove Contact Tag on ActiveCampaign
Description:
Version:0.4.2
Key:activecampaign-remove-tag-from-contact
import querystring from "querystring";
import axiosModule from "axios";
export default {
key: "activecampaign-remove-tag-from-contact",
name: "ActiveCampaign - Remove Contact Tag",
version: "0.4.2",
type: "action",
props: {
activecampaign: {
type: "app",
app: "activecampaign",
},
email: {
type: "string",
},
tags: {
type: "string",
},
},
async run() {
const axios = axiosModule.default;
const config = {
method: "post",
url: `${this.activecampaign.$auth.base_url}/admin/api.php?api_action=contact_tag_remove&api_key=${this.activecampaign.$auth.api_key}`,
data: querystring.stringify({
email: this.email,
tags: this.tags,
}),
};
return await axios(config);
},
};
This component may be configured based on the props
defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
Label | Prop | Type | Description |
---|
ActiveCampaign | activecampaign | app | This component uses the ActiveCampaign app. |
| email | string | |
| tags | string | |
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.
Email marketing, marketing automation, and CRM tools