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

# Move QR Codes to Folder

> Move multiple QR codes into a folder. Authentication required — include your API key in the Authorization header.

## Path Parameters

| Parameter | Type      | Required | Description       |
| :-------- | :-------- | :------- | :---------------- |
| `id`      | `integer` | Yes      | Target folder ID. |

## Request Body

| Field         | Type              | Required | Description                                                                                |
| :------------ | :---------------- | :------- | :----------------------------------------------------------------------------------------- |
| `qr_code_ids` | `array[string]`   | Yes      | Array of QR code IDs to move. To move all QR codes from the source folder, pass `["all"]`. |
| `from`        | `integer \| null` | No       | Source folder ID. Pass an integer such as `3`, or `null`.                                  |

## Example Request

```
{
  "qr_code_ids": ["QXXXXXXXXXXXX],
    "from": 3
}
```

## Example Response

### ✅ **200 OK**

```
{
  "message": "QR codes moved successfully"
}
```


## OpenAPI

````yaml POST /folder/{id}/bulk_move/
openapi: 3.1.0
info:
  title: Scanova Management API
  description: Management endpoints for tags, trash, and other administrative functions
  version: 1.0.0
servers:
  - url: https://management.scanova.io
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /folder/{id}/bulk_move/:
    post:
      tags:
        - Management
      summary: Move QR Codes to Folder
      description: Moves multiple QR codes into a folder. Requires authentication.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
          description: Folder ID
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
                - qr_code_ids
              properties:
                from:
                  type: integer
                  nullable: true
                  description: Source folder ID. Pass an integer or null
                  example: 3
                qr_code_ids:
                  type: array
                  items:
                    type: string
                  description: >-
                    List of QR code IDs to move. To move all QR codes from the
                    source folder, pass ['all']
                  example:
                    - QXXXXXXXXXXXX
      responses:
        '200':
          description: QR codes moved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: QR codes moved successfully
        '401':
          description: Unauthorized - Invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationErrorResponse'
        '404':
          description: Folder not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
                    example: Not found.
      security:
        - apiKeyAuth: []
components:
  schemas:
    AuthenticationErrorResponse:
      type: object
      properties:
        detail:
          type: string
          description: Authentication error message
          example: Invalid token.
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        API key authentication. Enter your API key directly in the Authorization
        header.

````