Skip to main content
POST
/
v1
/
chat
/
get
GetChat
curl --request POST \
  --url https://app.textql.com/v1/chat/get \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "chatId": "<string>"
}
'
{
  "chat": {
    "id": "<string>",
    "paradigm": {
      "type": "TYPE_UNKNOWN",
      "version": 123,
      "options": {
        "basic": {}
      }
    },
    "model": "MODEL_UNKNOWN",
    "timestamp": "2023-11-07T05:31:56Z",
    "orgId": "<string>",
    "memberId": "<string>",
    "summary": "<string>",
    "playbookId": "<string>",
    "research": true,
    "creatorEmail": "<string>",
    "apiKeyClientId": "<string>",
    "updatedAt": "2023-11-07T05:31:56Z",
    "isBookmarked": true,
    "preferredProvider": "<string>",
    "templateDataId": "<string>",
    "batchRunId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
chatId
string

Response

Success

chat
chat · object