Google Ads

Reach customers wherever they are. Show up at the right time and place across the vast Google Ads ecosystem.

Integrate the Google Ads API with the Discord API

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

Add Contact to Customer List by Email with Google Ads API on New Message (Instant) from Discord API
Discord + Google Ads
 
Try it
Create Customer List with Google Ads API on New Message (Instant) from Discord API
Discord + Google Ads
 
Try it
Create Report with Google Ads API on New Message (Instant) from Discord API
Discord + Google Ads
 
Try it
Send Offline Conversion with Google Ads API on New Message (Instant) from Discord API
Discord + Google Ads
 
Try it
Add Contact to Customer List by Email with Google Ads API on Message Deleted (Instant) from Discord API
Discord + Google Ads
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Campaign Created from the Google Ads API

Emit new event when a new campaign is created. See the documentation

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Add Contact to Customer List by Email with the Google Ads API

Adds a contact to a specific customer list in Google Ads. Lists typically update in 6 to 12 hours after operation. See the documentation

 
Try it
Create Customer List with the Google Ads API

Create a new customer list in Google Ads. See the documentation

 
Try it
Create Report with the Google Ads API

Generates a report from your Google Ads data. See the documentation

 
Try it
Send Offline Conversion with the Google Ads API

Send an event from to Google Ads to track offline conversions. See the documentation

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it

Overview of Google Ads

The Google Ads API lets you programmatically manage your Google Ads data and
campaigns. You can use the API to automate common tasks, such as:

  • Creating and managing campaigns
  • Adding and removing keywords
  • Adjusting bids

You can also use the API to get information about your campaigns, such as:

  • Campaign stats
  • Keyword stats
  • Ad performance

The Google Ads API is a powerful tool that lets you manage your Google Ads data
and campaigns programmatically. With the API, you can automate common tasks,
such as creating and managing campaigns, adding and removing keywords, and
adjusting bids. You can also use the API to get information about your
campaigns, such as campaign stats, keyword stats, and ad performance.

Connect Google Ads

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: {
    googleAds: { type: "app", app: "google_ads" }
  },
  async run({ $ }) {
    const googleAdsReq = {
      method: "get",
      url: "/v16/customers:listAccessibleCustomers",
      headers: {
        "Authorization": `Bearer ${this.googleAds.$auth.oauth_access_token}`,
        // "login-customer-id": this.googleAds.$auth.login_customer_id // optional for this endpoint
      }
    }
    // proxy google ads request
    return await axios($, {
      url: "https://eolid4dq1k0t9hi.m.pipedream.net",
      data: googleAdsReq,
    })
  }
})

Overview of Discord

The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.

Connect Discord

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})