Trigger workflows on an interval or cron schedule.
Replace the email list from a CRM audience in AdRoll. See docs here
With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:
With AdRoll, you can build a variety of targeted ads and retargeting campaigns
to reach your ideal customers. You can reach new audiences with our powerful
targeting options, and then retarget them with personalized ads to close the
sale.
Here are some examples of what you can build with AdRoll:
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}`,
},
})
},
})