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

# Update folder

`PUT /folders/{folder_id}`

Updates a folder — rename (name), move (parent_folder_id), or toggle status. All body fields are optional.

## Path parameters

- `folder_id` string, uuid, required

## Request body

- UpdateFolderRequest
  - `name` string — New folder name
  - `parent_folder_id` string, uuid, nullable — New parent folder ID (null to move to root)
  - `status` boolean — Folder status (true for active, false for inactive)

## Response `200`

Folder updated successfully

- object
  - `data` FolderDetails
    - `id` string, uuid
    - `name` string
    - `user_id` string, uuid
    - `parent_folder_id` string, uuid, nullable
    - `status` boolean
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `Videos` VideoSummary[] — List of videos in this folder
      - `id` string, uuid
      - `title` string
      - `video_external_id` string
      - `status` 'READY' | 'PROCESSING' | 'ERROR' | 'DELETING'
      - `created_at` string, date-time
    - `funnel` object, nullable — Associated funnel information
      - `id` string, uuid
    - `drm_groups` DrmGroupSummary[] — Associated DRM groups
      - `id` string, uuid
      - `name` string
      - `status` boolean
  - `message` string

## Other responses

- `400` — Bad request - Invalid input parameters
- `401` — Unauthorized - Invalid or missing authentication
- `404` — Not found - Resource does not exist
- `500` — Internal server error

---

[API](https://skmtc.net/pandavideo/apis/api-v2.md) · [All operations](https://skmtc.net/pandavideo/apis/api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pandavideo/api-v2/revisions/4fbd3c623ca9/schema)
