> ## Documentation Index
> Fetch the complete documentation index at: https://docs.augmentcode.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Request and Session IDs

> Request IDs and session IDs are generated with every code suggestion, chat interaction, and agent session in VS Code, JetBrains, and Auggie CLI. Our team may ask you to provide these IDs when you report a bug or issue.

export const Keyboard = ({shortcut}) => <span className="inline-block border border-gray-200 bg-gray-50 dark:border-white/10 dark:bg-gray-800 rounded-md text-xs text-gray font-bold px-1 py-0.5">
    {shortcut}
  </span>;

<Tabs>
  <Tab title="VS Code">
    ### Agent

    #### Method 1: Command Palette

    <Steps>
      <Step title="Open the Command Palette">
        Press <Keyboard shortcut="Cmd/Ctrl Shift P" /> to open the Command Palette.
      </Step>

      <Step title="Copy the session ID">
        Type `Augment: Copy Session ID` and select it. A notification will
        confirm: "Copied session ID to clipboard."
      </Step>

      <Step title="Paste the ID">
        Paste the ID wherever needed (e.g., a support ticket or Slack message).
      </Step>
    </Steps>

    #### Method 2: Copy from Threads Menu

    <Steps>
      <Step title="Toggle the Threads Menu">
        Toggle the Threads Menu or press <Keyboard shortcut="Cmd/Ctrl Shift '" />.
      </Step>

      <Step title="Click the options menu">
        Click the options menu (⋯) next to the title of the thread you would
        like to copy.
      </Step>

      <Step title="Share the session link">
        Select **"Share link to session"**. The session ID is now on your
        clipboard.
      </Step>
    </Steps>

    ### Chat

    <Steps>
      <Step title="Open the Chat panel">
        Open the Chat panel by clicking the Augment icon in the action bar on the left side of your editor.
      </Step>

      <Step title="Open the chat thread">
        If the chat reply you are interested in is in a previous chat thread, find the
        chat thread by clicking the <Icon icon="chevron-right" /> at the top of the
        chat panel and clicking the relevant chat thread.
      </Step>

      <Step title="Find the request ID">
        Find the reply in question and click the <Icon icon="link-simple" /> icon
        above the reply to copy the request ID to your clipboard.
      </Step>
    </Steps>

    ### Completions

    <Steps>
      <Step title="Open the History panel">
        Open the History panel by pressing <Keyboard shortcut="Cmd/Ctrl Shift P" />
        and then searching for `Augment: Show History` in the command menu.
      </Step>

      <Step title="Find the request ID">
        Recent requests are listed in reverse chronological order. Locate the
        request you are interested in and copy the request ID by clicking on the
        request ID, for example:
        <br /> `-- Request ID: 7f67c0dd-4c80-4167-9383-8013b18836cb`
      </Step>
    </Steps>
  </Tab>

  <Tab title="JetBrains">
    <img src="https://mintcdn.com/augment-mtje7p526w/X2NxfJXQRv-yj0JS/images/intellij-requestid.gif?s=d5fa781049a7eb0c9878b9e077f31962" alt="Finding a request ID in JetBrains" width="234" height="128" data-path="images/intellij-requestid.gif" />

    ### Chat

    <Steps>
      <Step title="Open the Chat panel">
        Open the Chat panel by clicking the Augment icon in the tool window bar
        on the right side of your editor.
      </Step>

      <Step title="Open the chat thread">
        If the chat reply you are interested in is in a previous chat thread, find the
        chat thread by clicking the <Icon icon="chevron-right" /> at the top of the
        chat panel and clicking the relevant chat thread.
      </Step>

      <Step title="Find the request ID">
        Find the reply in question and click the <Icon icon="link-simple" /> icon
        above the reply to copy the request ID to your clipboard.
      </Step>
    </Steps>
  </Tab>

  <Tab title="Auggie CLI">
    <img src="https://mintcdn.com/augment-mtje7p526w/upRZjHqQ5iqxoxee/images/auggie-requestid.gif?s=ebc340fa551095e99d88664a01c09a08" alt="Finding a request ID in Auggie CLI" width="442" height="382" data-path="images/auggie-requestid.gif" />

    In interactive mode, use the `/request-id` slash command to display the request ID
    for the current conversation.
  </Tab>
</Tabs>
