Skip to main content
Export session information from your Agent chat to share with support or engineering teams when troubleshooting issues. The exported data includes session identifiers, environment details, and version information that helps reproduce your chat state.

Steps

  1. Open the (more options) menu in the top right corner of the chat window.
  2. Click Copy Session Info.
  3. The session information is copied to your clipboard as JSON.

Session info structure

The exported session info contains the following fields:
sessionId
string
required
Unique identifier for the current chat session.
chatId
string
required
Identifier for the specific chat conversation, formatted as {type}_{projectId}_{pipelineId}_ {environment}_{pipelineName}.
hostname
string
required
The Prophecy application hostname where the session is active.
commit
string
required
The commit hash or version identifier of the Prophecy build running in your environment.
timestamp
integer
required
Unix timestamp in milliseconds indicating when the session info was exported.
version
string
required
The Prophecy version number running in your environment.

Example output

When you export session info, the clipboard contains JSON in this format:
{
  "sessionId": "861716af-6414-407d-97d1-d7afa1866558",
  "chatId": "datatransformation_11083_90964_dev_l2_percentile",
  "hostname": "app.prophecy.io",
  "commit": "4.2.1.4",
  "timestamp": 1763401148947,
  "version": "4.2.1.4"
}
Paste the exported session info into a support ticket or share it with your engineering team to help diagnose issues specific to your chat session and environment.