Pro plan
POST
POST
GET
POST
ERP integration API (v1)
Stateless endpoints for Pronto, middleware, or custom WMS integration. Send your API key in the X-Api-Key header on every request.
Base URL
https://maxpack.com.au/api/v1/
Pro plan customers receive an API key via the customer portal. Demo key available on the sign-in page for evaluation.
POST /pack.php — pack lines without saving an order
{
"reference": "SO-12345",
"shipMode": "parcel",
"lines": [
{ "sku": "TAPE-48", "qty": 4 },
{ "sku": "TAP-BAS", "qty": 2 }
]
}
Response: { ok, apiVersion, reference, summary, pack } — summary is slim; pack is the full load design.
POST /orders.php — create order (+ optional pack)
{
"reference": "SO-12345",
"customer": "Acme Pty Ltd",
"shipMode": "auto",
"pack": true,
"lines": [{ "sku": "TAPE-24", "qty": 6 }]
}
GET /orders.php?reference=SO-12345 or ?id=id-1
Add &pack=full to include the saved pack file.
POST /station.php — push order to packer bench
Assign a packed order to a station display (e.g. PACK-01). See portal for your station ID.
Authentication
Include header: X-Api-Key: your-api-key
Standard plan accounts do not include API access. Upgrade to Pro on the pricing page.