Skip to main content
GET
/
v2
/
folders
Get Chat Folders
curl --request GET \
  --url http://localhost:3000/api/v2/folders \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<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

Response

List of folders

id
string
required
name
string
required
studioId
string
required
isShared
boolean
required
I