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

# Copy a QR Code

> POST /qr/multi/

Creates up to ten copies of an existing QR Code.

```
POST   https://api.scanova.io/qr/multi/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
```

<ParamField body="qrid" type="string" required>
  The source QR Code to copy.
</ParamField>

<ParamField body="name" type="string">
  Base name for the copies, max 250 characters.
</ParamField>

<ParamField body="number_of_copies" type="integer" required>
  How many copies to create, from `1` to `10`.
</ParamField>

<ParamField body="custom_domain_id" type="integer">
  Optional custom domain for the copies' short URLs.
</ParamField>

The remaining fields — `domain`, `password`, `lead_list`, `form`, `high_accuracy_mode`, `pattern_info`, `tags`, `is_copy`, `is_page`, `has_qr` — are **booleans that mean "copy this aspect from the source?"**, not values:

<ParamField body="domain" type="boolean">
  Copy the source's custom domain.
</ParamField>

<ParamField body="password" type="boolean">
  Copy the source's password protection.
</ParamField>

<ParamField body="lead_list" type="boolean">
  Copy the attached lead list.
</ParamField>

<ParamField body="form" type="boolean">
  Copy the attached form.
</ParamField>

<ParamField body="pattern_info" type="boolean">
  Copy the design.
</ParamField>

<ParamField body="tags" type="boolean">
  Copy the tags.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST "https://api.scanova.io/qr/multi/" \
    -H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a" \
    -H "Content-Type: application/json" \
    -d '{
        "qrid": "Qa1b2c3d4e5f6g7h8",
        "name": "Summer Sale Landing",
        "number_of_copies": 3,
        "domain": true,
        "password": false,
        "lead_list": false,
        "form": false,
        "high_accuracy_mode": false,
        "pattern_info": true,
        "tags": true,
        "is_copy": true,
        "is_page": false,
        "has_qr": true
    }'
  ```
</RequestExample>

Returns `201` with the created QR Codes as a list, each in the full detail shape. Every copy consumes QR-count quota exactly as a fresh create would.

<Note>
  This path also answers to `PUT` for an unrelated operation — see [Bulk-update QR Code fields](/api-reference/management-api/qr/bulk-field-update). Same path, different verb, different contract.
</Note>

## Related

* [Bulk-update QR Code fields](/api-reference/management-api/qr/bulk-field-update) — the `PUT` operation on this same path.
* [Create a QR Code](/api-reference/management-api/qr/create) — create a fresh QR Code instead of a copy.
* [List QR Codes](/api-reference/management-api/qr/list) — find the source `qrid`.
* [QR Manager overview](/api-reference/management-api/qr/overview) — the quotas, role permissions, and Trash model shared by every endpoint in this module.
* [Management API overview](/api-reference/management-api/overview) — the auth scheme and quota rules that apply to this endpoint.


## OpenAPI

````yaml api-reference/openapi/management-api.json POST /qr/multi/
openapi: 3.1.0
info:
  title: Scanova Management API (v2)
  description: >-
    The complete Scanova Management API — every endpoint available at
    api.scanova.io (QR codes, folders, tags, leads, forms, analytics, plans,
    shared users & roles), plus the token-creation and usage-stats endpoints
    used to authenticate against it. Every path and request/response shape below
    was verified live against a real API key and the actual running backend
    (Phase 7, 2026-08-16) — not guessed from reading urls.py alone.
  version: 2.0.0
servers:
  - url: https://api.scanova.io
    description: Management API — QR/folder/tag/lead/form/analytics/plans endpoints
security:
  - apiKeyAuth: []
paths:
  /qr/multi/:
    post:
      summary: Create copies of a QR code
      description: >-
        Creates 1-10 copies of an existing QR code. The boolean fields are
        per-aspect 'copy this from the source?' switches rather than values.
        Each copy consumes QR-count quota exactly as a fresh create would.
        Returns the created QR codes as a list.
      operationId: bulkCopyQrCodes
      requestBody:
        content:
          application/json:
            example:
              qrid: Qa1b2c3d4e5f6g7h8
              name: Summer Sale Landing
              number_of_copies: 3
              domain: true
              password: false
              lead_list: false
              form: false
              high_accuracy_mode: false
              pattern_info: true
              tags: true
              is_copy: true
              is_page: false
              has_qr: true
      responses:
        '201':
          description: The created copies.
          content:
            application/json:
              example:
                - id: 1042
                  qrid: Qa1b2c3d4e5f6g7h8
                  name: Summer Sale Landing
                  qr_type: dy
                  qr_type_display: Dynamic
                  category:
                    id: 3
                    name: Website URL
                    slug: url
                    allowed_qr_types: dy
                    has_landing_page: false
                  info: >-
                    {"type":"url","data":{"url":"https://example.com/summer-sale"}}
                  pattern_info: null
                  svg_code: null
                  dynamic_url_object:
                    id: 501
                    url_hash: a1b2c3d4
                    custom_domain: null
                    complete_url: https://scnv.io/a1b2c3d4
                    qr_url: https://scnv.io/a1b2c3d4
                    is_active: true
                    is_expired: false
                    visit_count: 0
                    web_tracking_site_id: null
                  thumbnail: null
                  is_active: true
                  folder: null
                  version: 2
                  tags_list:
                    - campaign-2026
                    - print
                  is_password_protected: false
                  is_age_restricted: false
                  is_designer: false
                  high_accuracy_mode: false
                  activate_on: null
                  expire_on: null
                  expire_on_scan_count: null
                  minimum_age: null
                  is_page: false
                  has_qr: true
                  is_draft: false
                  draft_info: null
                  draft_saved_at: null
                  published_at: '2026-09-01T10:04:11Z'
                  is_currently_draft: false
                  created: '2026-09-01T10:04:11Z'
                  modified: '2026-09-01T10:04:11Z'
        '400':
          description: >-
            `number_of_copies` outside 1-10, or `qrid` not owned by this
            account.
        '403':
          description: QR-count quota exhausted for the requested number of copies.
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Send your Management API key as the raw value of the Authorization
        header — no "Bearer " or "Token " prefix, and no other characters.
        Example: `Authorization: 401f7ac837da42b97f613d789819ff93537bee6a`. A
        header containing more than one space-separated part is rejected
        outright. Requests also require the request's Host header to be the
        management API host (e.g. api.scanova.io) — the same key sent to the
        regular API host will not authenticate.

````