Gong

The Revenue Intelligence Platform

Integrate the Gong API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Call from Gong API
Gong + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Call from Gong API
Gong + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Call from Gong API
Gong + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Call from Gong API
Gong + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Call from Gong API
Gong + Formatting
 
Try it
New Call from the Gong API

Triggers when a new call is added. See the documentation

 
Try it
Add New Call with the Gong API

Add a new call. See the documentation

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
List calls with the Gong API
 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})