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

# Delete folder



## OpenAPI

````yaml /openapi-components.json delete /api/v1/folders/{id}
openapi: 3.0.0
info:
  title: StudyFetch API
  description: API documentation for StudyFetch
  version: '1.0'
  contact: {}
servers:
  - url: https://studyfetchapi.com
    description: Production API Server
security: []
tags: []
paths:
  /api/v1/folders/{id}:
    delete:
      tags:
        - Folders
      summary: Delete folder
      operationId: remove
      parameters:
        - name: id
          required: true
          in: path
          description: Folder ID
          schema:
            type: string
      responses:
        '200':
          description: Folder deleted successfully
      security:
        - x-api-key: []
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API Key for server-to-server authentication. Resolves to the owning
        organization.

````