> ## 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.

# Bulk move materials to a different folder



## OpenAPI

````yaml /openapi-components.json post /api/v1/materials/bulk/move
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/materials/bulk/move:
    post:
      tags:
        - Materials
      summary: Bulk move materials to a different folder
      operationId: bulkMoveMaterials
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkMoveMaterialsDto'
      responses:
        '200':
          description: Materials moved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkMoveResponseDto'
        '403':
          description: Insufficient permissions
        '404':
          description: Folder not found
      security:
        - x-api-key: []
components:
  schemas:
    BulkMoveMaterialsDto:
      type: object
      properties:
        materialIds:
          description: Array of material IDs to move
          type: array
          items:
            type: string
        folderId:
          type: string
          description: Target folder ID (null for root)
          nullable: true
      required:
        - materialIds
        - folderId
    BulkMoveResponseDto:
      type: object
      properties:
        success:
          type: boolean
          description: Operation success status
        movedCount:
          type: number
          description: Number of materials moved
      required:
        - success
        - movedCount
  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.

````