Skip to main content
PUT
/
v2
/
folders
/
{folderId}
Update Chat Folder
curl --request PUT \
  --url http://localhost:3000/api/v2/folders/{folderId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "isShared": true
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

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

Path Parameters

folderId
string
required

Body

application/json
name
string
required
isShared
boolean
required

Response

Folder updated successfully

I