AdRoll

Online advertising

Integrate the AdRoll API with the Schedule API

Setup the AdRoll API trigger to run a workflow which integrates with the Schedule API. Pipedream's integration platform allows you to integrate AdRoll and Schedule remarkably fast. Free for developers.

Replace Emails from CRM Audience with AdRoll API on Custom Interval from Schedule API
Schedule + AdRoll
 
Try it
Replace Emails from CRM Audience with AdRoll API on Daily schedule from Schedule API
Schedule + AdRoll
 
Try it
Replace Emails from CRM Audience with AdRoll API on Monthly Schedule from Schedule API
Schedule + AdRoll
 
Try it
Replace Emails from CRM Audience with AdRoll API on Weekly schedule from Schedule API
Schedule + AdRoll
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it
Replace Emails from CRM Audience with the AdRoll API

Replace the email list from a CRM audience in AdRoll. See docs here

 
Try it

Overview of AdRoll

The AdRoll API offers a suite of tools to enhance advertising efforts with targeted ad campaigns and advanced analytics. Harnessing this API within Pipedream allows you to automate interactions with AdRoll, such as synchronizing audiences, updating campaigns, and managing advertisements based on triggers from other services. By integrating AdRoll API with Pipedream, you create dynamic workflows that respond in real-time to your business data, ensuring your marketing efforts are both efficient and scalable.

Connect AdRoll

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    adroll: {
      type: "app",
      app: "adroll",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://services.adroll.com/api/v1/user/get`,
      headers: {
        Authorization: `Bearer ${this.adroll.$auth.oauth_access_token}`,
      },
      params: {
        apikey: `${this.adroll.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.