Google Docs

Use Google Docs to create, edit and collaborate on online documents.

Integrate the Google Docs API with the Gong API

Setup the Google Docs API trigger to run a workflow which integrates with the Gong API. Pipedream's integration platform allows you to integrate Google Docs and Gong 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
Append Text with Google Docs API on New Call from Gong API
Gong + Google Docs
 
Try it
Create a New Document with Google Docs API on New Call from Gong API
Gong + Google Docs
 
Try it
Add New Call with Gong API on New Document Created (Instant) from Google Docs API
Google Docs + Gong
 
Try it
Add New Call with Gong API on New or Updated Document (Instant) from Google Docs API
Google Docs + Gong
 
Try it
Append Image to Document with Google Docs API on New Call from Gong API
Gong + Google Docs
 
Try it
New Call from the Gong API

Triggers when a new call is added. See the documentation

 
Try it
New Document Created (Instant) from the Google Docs API

Emit new event when a new document is created in Google Docs. See the documentation

 
Try it
New or Updated Document (Instant) from the Google Docs API

Emit new event when a document is created or updated in Google Docs. See the documentation

 
Try it
Append Text with the Google Docs API

Append text to an existing document. See the documentation

 
Try it
Add New Call with the Gong API

Add a new call. See the documentation

 
Try it
Create a New Document with the Google Docs API

Create a new document. See the documentation

 
Try it
List calls with the Gong API
 
Try it
Append Image to Document with the Google Docs API

Appends an image to the end of a document. See the documentation

 
Try it

Overview of Google Docs

The Google Docs API allows you to create, read, and update Google Docs programmatically, enabling a wide range of automations and integrations with other apps and services. With Pipedream, you can harness this API to craft custom serverless workflows that trigger on various events, like form submissions, emails, or scheduled times, and perform actions like updating a document, extracting content, or even generating templated reports.

Connect Google Docs

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_docs: {
      type: "app",
      app: "google_docs",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_docs.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Gong

The Gong API allows you to tap into Gong's conversation intelligence capabilities, enabling you to retrieve call recordings, transcripts, and analytics data for sales engagements. By integrating Gong with Pipedream, you can automate workflows that react to this sales data, enrich CRM records, trigger follow-up actions, and sync insights across your sales stack. It's a goldmine for sales teams looking to leverage conversational insights and make data-driven decisions.

Connect Gong

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: {
    gong: {
      type: "app",
      app: "gong",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.gong.$auth.api_base_url_for_customer}/v2/users`,
      headers: {
        Authorization: `Bearer ${this.gong.$auth.oauth_access_token}`,
      },
    })
  },
})

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