HubSpot

HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.

Integrate the HubSpot API with the Google Ads API

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

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 Deleted Blog Posts from HubSpot API
HubSpot + Google Ads
 
Try it
Add Contact to Customer List by Email with Google Ads API on New Company Property Change from HubSpot API
HubSpot + Google Ads
 
Try it
Add Contact to Customer List by Email with Google Ads API on New Contact Property Change from HubSpot API
HubSpot + Google Ads
 
Try it
Add Contact to Customer List by Email with Google Ads API on New Custom Object Property Change from HubSpot API
HubSpot + Google Ads
 
Try it
Add Contact to Customer List by Email with Google Ads API on New Deal In Stage from HubSpot API
HubSpot + Google Ads
 
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
Deleted Blog Posts from the HubSpot API

Emit new event for each deleted blog post.

 
Try it
New Company Property Change from the HubSpot API

Emit new event when a specified property is provided or updated on a company. See the documentation

 
Try it
New Contact Property Change from the HubSpot API

Emit new event when a specified property is provided or updated on a contact. See the documentation

 
Try it
Add Contact to List with the HubSpot API

Adds a contact to a specific static list. See the documentation

 
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
Batch Create or Update Contact with the HubSpot API

Create or update a batch of contacts by its ID or email. 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 Associations with the HubSpot API

Create associations between objects. See the documentation

 
Try it

Overview of HubSpot

The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.

Connect HubSpot

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: {
    hubspot: {
      type: "app",
      app: "hubspot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.hubapi.com/integrations/v1/me`,
      headers: {
        Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
      },
    })
  },
})

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 with the Pipedream proxy

The Pipedream components interact with Google Ads API through Pipedream's proxy service, which handles authentication and developer token requirements.

The components accept a standard Google Ads API request object with the following structure:

const googleAdsReq = {
  method: "get|post|put|delete",  // HTTP method
  url: "/v16/...",                // 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://eolid4dq1k0t9hi.m.pipedream.net

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,
    })
  }
})

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