Skip to main content
GET
/
v2
/
chat-sessions
/
all
Get All Chat Sessions
curl --request GET \
  --url http://localhost:3000/api/v2/chat-sessions/all \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "title": "<string>",
    "folderId": "<string>",
    "studioId": "<string>",
    "isShared": true
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

studioId
string
required
workspaceId
string
required
isShared
boolean

Response

List of all chat sessions

id
string
required
title
string
required
studioId
string
required
isShared
boolean
required
folderId
string
I