with Google Tag Manager and Systeme.io?
The Google Tag Manager API allows you to manage your tags, triggers, variables, and related configurations programmatically. Through Pipedream, you can integrate these API capabilities into serverless workflows to automate complex tagging tasks, sync configurations across environments, and streamline marketing or analytics operations. Pipedream's platform facilitates the creation of custom automations with Google Tag Manager, helping you deploy tags faster, manage user permissions, and control versions of your tag configurations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_tag_manager: {
type: "app",
app: "google_tag_manager",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/tagmanager/v2/accounts`,
headers: {
Authorization: `Bearer ${this.google_tag_manager.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
systeme_io: {
type: "app",
app: "systeme_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.systeme.io/api/contacts`,
headers: {
"x-api-key": `${this.systeme_io.$auth.api_key}`,
},
})
},
})