Skip to main content
PUT
/
v2
/
hc-articles
/
{id}
/
move
/
public
Move article
curl --request PUT \
  --url https://api-prod.usefini.com/v2/hc-articles/{id}/move/public \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "parentFolderId": "<string>"
}
'
Use this route to move an article between folders 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
Article ID to move.

Body parameters

parentFolderId
string
required
Destination folder ID.

Response

Returns the moved article object. See Manage knowledge for the shared article fields.
The response reflects the article after its parentFolderId has been updated.

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 article or destination folder does not exist in the workspace.