What do you want to automate

with Google Ads and Twilio SendGrid?

Prompt, edit and deploy AI agents that connect to Google Ads, Twilio SendGrid and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Add Contact to Customer List by Email with Google Ads API on New Contact from Twilio SendGrid API
Twilio SendGrid + Google Ads
 
Try it
Add Contact to Customer List by Email with Google Ads API on New Events (Instant) from Twilio SendGrid API
Twilio SendGrid + Google Ads
 
Try it
Add Email to Global Suppression with Twilio SendGrid API on New Campaign Created from Google Ads API
Google Ads + Twilio SendGrid
 
Try it
Add Email to Global Suppression with Twilio SendGrid API on New Lead Form Entry from Google Ads API
Google Ads + Twilio SendGrid
 
Try it
Add or Update Contact with Twilio SendGrid API on New Campaign Created from Google Ads API
Google Ads + Twilio SendGrid
 
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 Lead Form Entry from the Google Ads API

Emit new event for new leads on a Lead Form. See the documentation

 
Try it
New Contact from the Twilio SendGrid API

Emit new event when a new contact is created

 
Try it
New Events (Instant) from the Twilio SendGrid API

Emit new event when any of the specified SendGrid events is received

 
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
Add Email to Global Suppression with the Twilio SendGrid API

Allows you to add one or more email addresses to the global suppressions group. See the docs here

 
Try it
Create Customer List with the Google Ads API

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

 
Try it
Add or Update Contact with the Twilio SendGrid API

Adds or updates a contact. See the docs here

 
Try it
Create Report with the Google Ads API

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

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

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.

Customizing API requests from within the Pipedream workflow builder

The Pipedream components interact with Google Ads API through an interal proxy service, which protects Pipedream's developer token.

The component accepts a standard Google Ads API request object with the following structure:

const googleAdsReq = {
  method: "get|post|put|delete", // HTTP method
  url: "/v18/...", // Google Ads API endpoint path
  headers: {
    Authorization: `Bearer ${this.googleAds.$auth.oauth_access_token}`,
  },
  data: {}, // Optional request body for POST/PUT requests
};

To make different API calls while using the proxy:

  1. Modify the url path to match your desired Google Ads API endpoint
  2. Update the method to match the required HTTP method
  3. Add any necessary request body data in the data field
  4. Include any required headers (Authorization is automatically included)

Example for a custom query:

const googleAdsReq = {
  method: "post",
  url: "/v16/customers/1234567890/googleAds:search",
  headers: {
    Authorization: `Bearer ${this.googleAds.$auth.oauth_access_token}`,
  },
  data: {
    query: "SELECT campaign.id, campaign.name FROM campaign",
  },
};

The proxy endpoint will remain the same: https://googleads.m.pipedream.net

Using Google Ads with the Connect API Proxy

To interface with Google Ads via the Connect API Proxy, you need to nest the request like this:

Important notes:

  • The upstream URL in this case is Pipedream's proxy service for Google Ads: https://googleads.m.pipedream.net
  • Like in the above examples, you'll define the Google Ads URL with the url param in the body
  • The method to the Connect Proxy should always be a POST, since it's actually targeting the Google Ads proxy (you can define the method for the Google Ads request in options.body.method)

Using the Pipedream SDK

const pd = createBackendClient({
  apiHost: process.env.API_HOST,
  credentials: {
    clientId: process.env.CLIENT_ID,
    clientSecret: process.env.CLIENT_SECRET,
  },
  environment: process.env.ENVIRONMENT,
  projectId: process.env.PROJECT_ID,
});

const pdGoogleAdsUrl = "https://googleads.m.pipedream.net";

const resp = await pd.makeProxyRequest(
  {
    searchParams: {
      external_user_id: process.env.EXTERNAL_USER_ID,
      account_id: process.env.ACCOUNT_ID,
    },
  },
  {
    url: pdGoogleAdsUrl,
    options: {
      method: "POST",
      body: {
        url: "/v19/customers:listAccessibleCustomers",
        method: "GET",
        // data: {} // If you need to send a body with a POST request, define it here
      },
    },
  }
);

Using the Connect REST API

  • Remember to use the Base64 encoded Pipedream endpoint for Google Ads: https://googleads.m.pipedream.net
curl -X POST "https://api.pipedream.com/v1/connect/{your_project_id}/proxy/{url_safe_base64_encoded_url}?external_user_id={external_user_id}&account_id={apn_xxxxxxx}" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: {development | production}" \
  -d '{
    "url": "/v19/customers:listAccessibleCustomers",
    "method": "GET",
    # "data": {} # If you need to send a body with a POST request, define it here
  }'

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: "/v19/customers:listAccessibleCustomers",
      headers: {
        "Authorization": `Bearer ${this.googleAds.$auth.oauth_access_token}`,
        // "login-customer-id": this.googleAds.$auth.customer_id // optional for this endpoint
      }
    }
    // proxy google ads request
    return await axios($, {
      url: "https://googleads.m.pipedream.net",
      data: googleAdsReq,
    })
  }
})

Overview of Twilio SendGrid

The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.

Connect Twilio SendGrid

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

Community Posts

How Our Family Uses SMS and Smart Picture Frames to Connect During Remote Holidays
How Our Family Uses SMS and Smart Picture Frames to Connect During Remote Holidays
Two days before Thanksgiving, I decided to put together a simple way for our family to share pictures, because we couldn’t be together in person. The idea: smart photo frames that everyone could text pictures to. Here’s how I got it working. tldr; A Pipedream workflow parses SMS messages sent to a Twilio phone number, extracting the pictures and then using SendGrid to email them to the dedicated email addresses used by our Pix-Star photo frames.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo