The Revenue Intelligence Platform
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.
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})