---
title: "Edit Folder"
method: PUT
path: "/folders/{folder_id}"
tags: ["Folders"]
---

# Edit Folder

`PUT /folders/{folder_id}`

Rename or move a folder.

Use this endpoint to change a folder's `slug`, `name`, or
`parent_id`. The `id` in the request body must match the path
parameter or the call returns `400`. Name and path-uniqueness rules
from create apply: invalid names return `400`, a path collision
returns `409`, and a missing `parent_id` returns `404`.

## Path parameters

- `folder_id` string, uuid, required

## Request body

- FolderEditRequest
  - `folder` FolderEdit, required
    - `flags` object, nullable
    - `tags` object, nullable
    - `meta` object, nullable
    - `name` string, nullable
    - `description` string, nullable
    - `slug` string, nullable
    - `id` string, uuid, nullable
    - `kind` 'applications'
    - `parent_id` string, uuid, nullable — New parent folder id. Include the key with a `null` value to move the folder to the root; omit the key to keep the existing parent.

## Response `200`

Successful Response

- FolderResponse
  - `count` integer — Number of folders returned (`0` or `1`).
  - `folder` Folder
    - `flags` object, nullable
    - `tags` object, nullable
    - `meta` object, nullable
    - `name` string, nullable
    - `description` string, nullable
    - `created_at` string, date-time, nullable
    - `updated_at` string, date-time, nullable
    - `deleted_at` string, date-time, nullable
    - `created_by_id` string, uuid, nullable
    - `updated_by_id` string, uuid, nullable
    - `deleted_by_id` string, uuid, nullable
    - `slug` string, nullable
    - `id` string, uuid, nullable
    - `kind` 'applications'
    - `path` string, nullable — Dot-separated materialized path built from the folder's slug and its ancestors' slugs. Read-only; derived by the server.
    - `parent_id` string, uuid, nullable — Id of the parent folder, or `null` for a root folder.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/agenta-ai/apis/agenta-api.md) · [All operations](https://skmtc.net/agenta-ai/apis/agenta-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/agenta-ai/agenta-api/versions/ea6421d829f1/schema)
