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

# Bulk Unassign QR Codes from Folder

> Remove multiple QR codes from a folder in a single request. Authentication required — include your API key in the Authorization header.

## Overview

Removes one or more QR codes from the specified folder.

## Path Parameters

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

## Request Body

| Field         | Type            | Required | Description                                                                                         |
| :------------ | :-------------- | :------- | :-------------------------------------------------------------------------------------------------- |
| `qr_code_ids` | `array[string]` | Yes      | Array of QR code IDs to unassign from the folder (To move all QR codes from folder, pass \['all']") |

## Example Request

```json theme={null}
{
  "qr_code_ids": ["Q80b31caa45cd4b44", "Q12ab34cd56ef78gh"]
}
```

## Example Response

### ✅ **200 OK**

```json theme={null}
{
  "message": "QR codes unassigned successfully"
}
```

## Use Cases

* **Reorganization**: Remove QR codes from a folder before moving them elsewhere
* **Cleanup**: Unassign outdated QR codes from campaign folders
