With the Doppler Marketing Automation API, you can build a variety of applications that can automate your marketing tasks. Here are some examples of what you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
doppler_marketing_automation: {
type: "app",
app: "doppler_marketing_automation",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://restapi.fromdoppler.com/accounts/${this.doppler_marketing_automation.$auth.account_name}/campaigns`,
headers: {
"Accept": `application/json`,
"Authorization": `token ${this.doppler_marketing_automation.$auth.api_key}`,
},
})
},
})
Doppler Marketing Automation uses API keys for authentication. When you connect your Doppler Marketing Automation account, Pipedream securely stores the keys so you can easily authenticate to Doppler Marketing Automation APIs in both code and no-code steps.
To retrieve your API keys,