What do you want to automate

with Google Marketplace and Demandbase?

Prompt, edit and deploy AI agents that connect to Google Marketplace, Demandbase 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
Integrate the Google Marketplace API with the Demandbase API
Setup the Google Marketplace API trigger to run a workflow which integrates with the Demandbase API. Pipedream's integration platform allows you to integrate Google Marketplace and Demandbase remarkably fast. Free for developers.

Connect Google Marketplace

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: {
    google_marketplace: {
      type: "app",
      app: "google_marketplace",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://appsmarket.googleapis.com/appsmarket/v2/licenseNotification/${this.google_marketplace.$auth.application_id}`,
      headers: {
        Authorization: `Bearer ${this.google_marketplace.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Demandbase

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    demandbase: {
      type: "app",
      app: "demandbase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.insideview.com/api/v1/admin/usage`,
      headers: {
        "accesstoken": `${this.demandbase.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
      params: {
        period: `year`,
        start: `2023`,
        end: `2025`,
      },
    })
  },
})

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