# Batch Barcode and QR Label Workflow

**Use case:** 

Generate a mixed batch of QR codes and linear barcodes with consistent styling for warehouse labels and product operations.

## Input

```json
{
  "barcodes": [
    {
      "data": "ASSET-000123",
      "format": "CODE128",
      "outputFormat": "BOTH",
      "label": "asset-000123"
    },
    {
      "data": "https://inventory.example.com/assets/000123",
      "format": "QR",
      "outputFormat": "BOTH",
      "label": "asset-link-000123"
    },
    {
      "data": "978020137962",
      "format": "EAN13",
      "outputFormat": "SVG",
      "label": "book-ean13"
    }
  ],
  "outputFormat": "BOTH",
  "width": 420,
  "height": 180,
  "lineColor": "#0f172a",
  "background": "#ffffff",
  "includeText": true,
  "fontSize": 20,
  "margin": 12,
  "qrErrorCorrection": "Q"
}
```

## Output

```json
{
  "label": {
    "label": "Label",
    "format": "text"
  },
  "data": {
    "label": "Data",
    "format": "text"
  },
  "format": {
    "label": "Format",
    "format": "text"
  },
  "outputFormat": {
    "label": "Output Format",
    "format": "text"
  },
  "width": {
    "label": "Width",
    "format": "number"
  },
  "height": {
    "label": "Height",
    "format": "number"
  },
  "kvKey": {
    "label": "KV Store Key",
    "format": "text"
  },
  "kvKeyPng": {
    "label": "PNG Key",
    "format": "text"
  },
  "kvKeySvg": {
    "label": "SVG Key",
    "format": "text"
  },
  "success": {
    "label": "Success",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Barcode Generator](https://apify.com/automation-lab/barcode-generator) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/barcode-generator) to learn more, explore other use cases, and run it yourself.