Spool Spool

Help & guides

Short, practical guides. If you're stuck on something not covered here, the team page shows your workspace owner — they can usually help fastest.

GuideGetting started

  1. Create your workspace — sign up with your work email and confirm it. You become the Owner of a new company workspace; your labels are private to it.
  2. Design your first label — the designer opens with a sample. Set your label stock size (millimetres or dots), then add text, barcodes, lines, boxes and images. Every save keeps a version you can restore.
  3. Save a printer — in the designer's Print dialog (or the Printers page), enter a name, the printer's IP address, port (usually 9100) and its language: Honeywell for Fingerprint printers, Zebra for ZPL.
  4. Install the Print Bridge on the PC you print from (see below), then print a test label.
  5. Invite your team — Team page → Invite, choosing each person's role. Users who only print get exactly that and nothing more.

IntegrationThe Print API

Owners generate a Print API key on the Team page. Your systems then queue jobs with a single POST:

curl -X POST https://www.spool.nz/api/print/jobs \
  -H "X-Api-Key: lvk_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "transactionId": "ORDER-10042",
    "labelType": "Carton 4x2",
    "copies": 3,
    "product": "Frozen Snapper Fillets 5kg",
    "batchNo": "B-2026-0825",
    "bestBefore": "2026-09-25",
    "barcode": "9421023610046"
  }'
FieldMeaning
transactionIdRequired. Your reference. Re-sending the same id updates the pending job; re-sending after it printed queues a replacement.
labelTypeOptional (alias format) — the exact name of a design in your library. Omit it and the person printing picks the design at release.
copiesOptional (aliases qty, quantity), 1–99. Omitted = asked at print time.
printerOptional — a saved printer's name, pre-selected at release.
anything elseBecomes a {tag}: a design containing {batchNo} gets that value filled in. Names match case-insensitively; unmatched tags print as-is.

Also: GET /api/print/jobs/<transactionId> returns status and history; DELETE cancels an unprinted job. Errors come back as JSON with a clear error message.

IntegrationSupplier keys — one system, many companies

When a central system (your ERP) creates labels that other companies print — suppliers printing inbound labels, for example — use a Supplier key (Company menu → Supplier Keys):

  1. Create a key for the source system.
  2. Map the system's supplier codes (e.g. SUPPLIER_07) to companies. Each job's supplierId routes it to that company's queue.
  3. Map the system's label codes (e.g. ASN_CARTON) to your approved designs — pinned to a version, so later edits never silently change what suppliers print.

Suppliers see only their own jobs and release them on their own printers; you get a dashboard across all suppliers. The payload is the same as the Print API, plus the required supplierId.

ReferenceTeam roles

RolePrint queuePrinter setupLabel designTeam & keys
User
Manager
Admin
Owner

Owners can additionally tick "Queue jobs" on any User so they can create jobs manually without gaining other rights. Roles take effect within a few minutes of changing (or immediately on next sign-in).

FAQCommon questions

Which printers are supported?

Honeywell / Intermec printers speaking Fingerprint, and Zebra printers speaking ZPL — networked (TCP, usually port 9100). Set the language on each saved printer.

Does my label data leave my network?

Designs and job data are stored in the service so your team shares one library and queue; the printing itself goes straight from the Print Bridge on your PC to your printer over your own LAN.

Can I keep using my existing Fingerprint labels?

Yes — paste the code into the designer's import and keep editing visually. Export back to code any time.

Why does a reprint ask for a reason?

Reprints are the classic source of duplicate-label problems, so each one records who, why, and on which printer. Replacement labels reuse the original data; a genuinely new carton or pallet should come from your source system as a new job.

What happens if a printer is offline when I release?

The job is marked Failed with the error, stays visible, and can be released again once the printer is back.

I sent a job via the API but nothing printed.

That's by design — API jobs wait in the Print Queue until a person releases them. Check the queue's Pending tab.

Still stuck?

Email us at support@xileit.com — we read everything.

Create your workspace