ActiveCampaign is the email marketing, marketing automation, and CRM suite you need to create incredible customer experiences.
Emit new event when a new Plan is created in Microsoft 365 Planner
Emit new event when a new Task is created in Microsoft 365 Planner
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).
Create a new bucket in Microsoft 365 Planner. See the documentation
Create a new plan in Microsoft 365 Planner. See the documentation
ActiveCampaign's API provides a powerful interface to automate your email marketing, sales automation, and customer relationship management. By leveraging ActiveCampaign with Pipedream, you can create custom, automated workflows that react to events in real-time, sync data between various platforms, and trigger targeted communication with your users. With the ability to perform actions such as adding contacts, updating deals, and sending out campaigns, the API offers a wide range of possibilities for enhancing your marketing strategies.
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/users/me`,
headers: {
"Api-Token": `${this.activecampaign.$auth.api_key}`,
},
})
},
})
The Microsoft 365 Planner API lets you tap into the robust task management capabilities of Planner within the Microsoft 365 suite. With this API on Pipedream, you can automate tasks, sync Planner data with other services, manage plans, tasks, and buckets programmatically. This opens up possibilities for creating custom workflows to enhance productivity, streamline project tracking, and maintain synchronization across various platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_365_planner: {
type: "app",
app: "microsoft_365_planner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_365_planner.$auth.oauth_access_token}`,
},
})
},
})