Skip to main content
POST
/
v2
/
folders
Create Chat Folder
curl --request POST \
  --url http://localhost:3000/api/v2/folders \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "studioId": "<string>",
  "isShared": true
}'
{
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required
studioId
string
required
isShared
boolean
required

Response

Folder created successfully

id
string
required
I