> ## Documentation Index
> Fetch the complete documentation index at: https://skyvern.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Update folder

> Update a folder's title or description



## OpenAPI

````yaml /api-reference/openapi.json put /v1/folders/{folder_id}
openapi: 3.1.0
info:
  title: Skyvern API
  description: API for Skyvern
  version: 1.0.0
servers:
  - url: https://api.skyvern.com
    x-fern-server-name: Cloud
  - url: https://api-staging.skyvern.com
    x-fern-server-name: Staging
  - url: http://localhost:8000
    x-fern-server-name: Local
security: []
paths:
  /v1/folders/{folder_id}:
    put:
      tags:
        - Folders
      summary: Update folder
      description: Update a folder's title or description
      operationId: update_folder_v1_folders__folder_id__put
      parameters:
        - name: folder_id
          in: path
          required: true
          schema:
            type: string
            description: Folder ID
            examples:
              - fld_123
            title: Folder Id
          description: Folder ID
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Skyvern API key for authentication. API key can be found at
              https://app.skyvern.com/settings.
            title: X-Api-Key
          description: >-
            Skyvern API key for authentication. API key can be found at
            https://app.skyvern.com/settings.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FolderUpdate'
      responses:
        '200':
          description: Successfully updated folder
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Folder'
        '404':
          description: Folder not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    FolderUpdate:
      properties:
        title:
          anyOf:
            - type: string
              maxLength: 255
              minLength: 1
            - type: 'null'
          title: Title
          description: Folder title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Folder description
      type: object
      title: FolderUpdate
      description: Request model for updating a folder
    Folder:
      properties:
        title:
          type: string
          maxLength: 255
          minLength: 1
          title: Title
          description: Folder title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Folder description
        folder_id:
          type: string
          title: Folder Id
        organization_id:
          type: string
          title: Organization Id
        workflow_count:
          type: integer
          title: Workflow Count
          description: Number of workflows in this folder
          default: 0
        created_at:
          type: string
          format: date-time
          title: Created At
        modified_at:
          type: string
          format: date-time
          title: Modified At
      type: object
      required:
        - title
        - folder_id
        - organization_id
        - created_at
        - modified_at
      title: Folder
      description: Response model for a folder
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````