with AdRoll and Chat Data?
Replace the email list from a CRM audience in AdRoll. See docs here
Create a chatbot with the specified properties. See the documentation
Get status of the Chatbot with the specified ID. See the documentation
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.
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chat_data: {
type: "app",
app: "chat_data",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.chat-data.com/api/v2/current-plan`,
headers: {
Authorization: `Bearer ${this.chat_data.$auth.api_key}`,
},
})
},
})