Skip to main content
GET
/
v2
/
chat-sessions
Get Chat Sessions
curl --request GET \
  --url http://localhost:3000/api/v2/chat-sessions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "title": "<string>",
    "folderId": "<string>",
    "studioId": "<string>",
    "isShared": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

folderId
string
studioId
string
required
workspaceId
string
required
page
number
isShared
boolean
required

Response

List of chat sessions

id
string
required
title
string
required
studioId
string
required
isShared
boolean
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required
folderId
string
I