Knowledge base

Rename folder

Rename a folder or move it.

PUThttps://app.elunos.ai/api/v1/knowledge/folders/{id}

Changes the name or the parent folder. The documents inside stay untouched.

Path parameters

iduuidPflicht

ID of the folder.

Body

namestringPflicht

New display name.

parent_iduuid | null

New parent folder. `null` moves it to the top level.

Example

curl -X PUT https://app.elunos.ai/api/v1/knowledge/folders/019f94f8-0a1b-7c2d-8e3f-4a5b6c7d8e9f \
  -H "Authorization: Bearer np_xxxxxxxx" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Praxis und Anfahrt"
  }'

Response

{
  "data": {
    "id": "019f94f8-0a1b-7c2d-8e3f-4a5b6c7d8e9f",
    "name": "Praxis und Anfahrt",
    "parent_id": null,
    "documents_count": 4,
    "sync_status": "synced",
    "sync_error": null,
    "created_at": "2026-09-01T08:55:00+02:00",
    "updated_at": "2026-09-01T08:55:00+02:00"
  }
}