Skip to main content
PUT
/
v2
/
hc-folders
/
{id}
/
public
Update knowledge folder
curl --request PUT \
  --url https://api-prod.usefini.com/v2/hc-folders/{id}/public \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "active": true
}
'
Use this route to update an existing folder in the knowledge tree.

Headers

Authorization
string
required
Bearer token containing your Fini workspace API key. Format: Bearer fini_... The key needs write scope.
Content-Type
string
required
application/json

Path parameters

id
string
required
Folder ID to update.

Body parameters

title
string
required
Updated folder title.
description
string
required
Updated folder description.
active
boolean
required
Whether the folder should remain active.

Response

Returns the full updated knowledge folder object. See Organize knowledge for the shared folder fields.

Errors

The request body is malformed.
The API key is missing, malformed, revoked, or invalid.
The API key does not include the write scope.
The folder does not exist in the workspace.