Skip to main content
GET
/
v1
/
chat
/
{chatConversationShortId}
Get chat conversation
curl --request GET \
  --url https://api.qa.tech/v1/chat/{chatConversationShortId} \
  --header 'Authorization: Bearer <token>'
{
  "shortId": "<string>",
  "url": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "title": "<string>",
  "source": "api",
  "messages": [
    {
      "id": "<string>",
      "role": "user",
      "createdAt": "2023-11-07T05:31:56Z",
      "text": "<string>",
      "status": "INITIATED",
      "isStreaming": true
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.qa.tech/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

chatConversationShortId
string
required
Pattern: ^chat(-.+_.+|_.+)$

Query Parameters

query
object
required

Response

200 - application/json

The request has succeeded.

Conversation data with recent messages (newest first).

shortId
string
required
Pattern: ^chat(-.+_.+|_.+)$
url
string
required

Dashboard URL for the conversation.

createdAt
string<date-time>
required
updatedAt
string<date-time>
required
title
string
source
enum<string>

Where the conversation originated. api for conversations created via this API, ui for the dashboard, github/gitlab for VCS-triggered chats, and system for everything else.

Available options:
api,
ui,
github,
gitlab,
system
messages
object[]

Recent messages, newest first. Empty on creation; poll GET /chat/{chatConversationShortId} to retrieve.