Use your existing calls (demos, great sales pitches, etc) natively in third-party applications such as a learning management system (LMS) for a seamless, more secure, experience.

For security reasons, your students must be Gong users with permissions to access the embedded call, and need to be signed in to Gong to play it.

There are 3 ways you can embed a call or snippet:
Embed a call or snippet manually
Use this method to embed a call or snippet in the easiest way.
-
Start by picking what you want to share:
-
To embed an entire call, the easiest way is from the call page, click Share Call > Embed call.
-
To embed a call snippet, the easiest way is to select a snippet of the call in the transcript view, and click Share > Embed call.
-
-
Then grab the code or URL:
-
If the 3rd-party where you’re pasting the call/snippet supports adding HTML code, click COPY CODE to grab the embed code, which is the iframe tag containing the relevant embedded call URL (recommended).
-
If your system supports adding URLs and embeds them in an iframe, click COPY URL to grab the call’s embeddable URL, which you can then put inside the 3rd-party application.
-
-
Follow the instructions of your third-party application to insert the code/URL into the spot you want.
-
For the copied URL, use an iframe element as follows:
<iframe width="[width]" height="[height]" src="[embeddable-url]" frameborder="0"/>
Where the embeddable-url is the URL you got in step 2.
Note that the iFrame width must have a width of at least 280px.
The call displays inline where you placed the code.
-
Copy the URL (oEmbed)
Use this method if the target 3rd-party application supports the oEmbed protocol.
-
Start by picking what you want to share:
-
To embed the entire call, copy the call URL from the browser address of the call page in Gong.
-
To embed a call snippet, select a snippet of the call in the transcript view, and click Share > Share internally, and click Get shareable link.
-
-
Paste the URL that you got in step 1 to the 3rd-party application embed area.
-
In the target, invoke the following request:
https://app.gong.io/oembed?url=[call page url]
Where the call page url is the URL you got in step 1.
The call displays inline where you placed the code.
Embed a call or snippet using API
Use this method when you have obtained the call ID or URL via the API.
-
Use the Gong API to get the call ID via the API.
Refer to the Gong API documentation if you don't know how to do this.
-
Prepare the following URL formats for embedding:
-
Full call:
https://app.gong.io/embedded-call?call-id=[call-id]
Where the call-id is the one obtained via the API.
-
Call snippet (based on data obtained from the API like topics, trackers or keywords):
https://app.gong.io/embedded-call?call-id= [call-id]&from=[from]&to=[to]
Where the call-id is the one obtained via the API, and the from and to are the number of seconds since the beginning of the call for the start and end of the snippet.
-
-
Add the prepared URL to an iFrame in the target:
<iframe width="[width]" height="[height]" src="[embeddable-url]" frameborder="0"/>
Where embeddable-url is the URL you prepared in step 2.