PDF templates / Logistics

Packing Slip Template

A warehouse packing slip laid out as a crate grid: ship-from and ship-to as facing cells, each SKU in its own qty tile, tracking on the floor rail. Built for pick-and-pack, not as a letterhead invoice.

LogisticsA4packing-slippackingskutrackinglogisticsgrid

Clone this layout in the dashboard to get an account-owned draft you can edit and publish. After publish, send your slug or UUID as templateId with JSON templateData.

Sample templateData

JSON
{
  "orderNumber": "PK-40931",
  "shippedOn": "2026-08-21",
  "carrier": "OSM FREIGHT",
  "trackingNumber": "OSM 8841 210 1842",
  "shipFrom": {
    "name": "Hearth & Cup Roastery",
    "address": "11 Court Street",
    "city": "Hudson",
    "region": "NY",
    "postalCode": "12534"
  },
  "shipTo": {
    "name": "Westmere Gallery",
    "address": "19 Crosby Street",
    "city": "New York",
    "region": "NY",
    "postalCode": "10013"
  },
  "items": [
    {
      "sku": "FK-MUG-12OZ",
      "name": "12oz kiln mug",
      "quantity": 24
    },
    {
      "sku": "FK-TRAY-ASH",
      "name": "Ash serving tray",
      "quantity": 12
    },
    {
      "sku": "FK-SPOON-SET",
      "name": "Tasting spoon set",
      "quantity": 18
    },
    {
      "sku": "FK-BOWL-RIM",
      "name": "Rim bowl",
      "quantity": 16
    }
  ],
  "notes": "Count verified at dock two. Deliver to freight entrance."
}

Clone from the gallery

POST /v1/templates
curl https://api.relaypdf.com/v1/templates \
  -H "Authorization: Bearer pdf_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Packing Slip Template",
    "galleryId": "packing-slip"
  }'

More in Logistics