How to get the conversation Id from a meeting summary page?

Is there any way to get the conversationId from the summary URL page that is generated from Flows?

In order to get the conversation Id from flows specifically, you have to:

  • Open up developer tools by pressing cntrl + shift + i on your keyboard or cmd + shift + i for mac

  • In the console, type atob() and pass in just the unique identifier part of your summary page url that looks like .../meeting/#/<unique-identifier> as a string

  • When you execute this, you’ll see a JSON response that has the session id in it like this: "sessionId":"616892944980323476" . This is also the conversation Id that you can now use with our conversations API to make requests

If using the Voice API or the SDK, the conversation Id is returned as part of the response or promise.

1 Like