Warehouse ও 3PL workflow-এর জন্য Pallet label API
SSCC, GS1-128, text block এবং reprint-safe template-সহ warehouse, 3PL, retail ও logistics workflow-এর জন্য pallet label PDF তৈরি করুন।
/api/v1/pdf/render WMS, ERP বা 3PL data থেকে pallet label PDF render করুন, যাতে warehouse team pallet identify করতে, SSCC বা GS1 barcode scan করতে এবং receiving, shipping বা inventory move-এর সময় একই label reprint করতে পারে।
কখন এই API ব্যবহার করবেন
- আপনার WMS-এ pallet ID, SKU বা GTIN data, quantity, lot এবং destination আগে থেকেই আছে।
- SSCC, GS1-128 বা অন্যান্য supported barcode format-সহ PDF label দরকার।
- একই source payload থেকে deterministic reprint চান।
- Layout stable Template Render contract হওয়া দরকার।
এটি কী replace করে না
- Inventory, palletization বা warehouse task manage করার কাজ gPdf-কে দিতে চান।
- PDF barcode rendering নয়, GS1 certification দরকার।
- Direct printer command output দরকার।
কোন endpoint call করবেন
/api/v1/pdf/render
JSON Render এই workflow-এর default path।
/api/v1/template-render
Workflow-তে related API path, template contract অথবা capabilities lookup দরকার হলে ব্যবহার করুন।
নূন্যতম request
POST /api/v1/pdf/render - SSCC barcode-সহ pallet label।
{
"pages": [
{
"size": "label_4_6_in",
"elements": [
{
"type": "text",
"x": 5,
"y": 7,
"content": "PALLET 12 / DOCK B",
"style": { "font_size": 13, "font_family": "NotoSans-Regular" }
},
{
"type": "barcode",
"format": "sscc-18",
"content": "000123456789012345",
"x": 5,
"y": 28,
"width": 92,
"height": 30,
"barcode_text": { "enabled": true, "position": "bottom" }
},
{
"type": "text",
"x": 5,
"y": 78,
"content": "GTIN 09506000134352\nQTY 48 CASES\nLOT L-2026-05",
"style": { "font_size": 10, "font_family": "NotoSans-Regular" }
}
]
}
]
}
gPdf কী করে
- Text, box এবং barcode element-সহ label-sized PDF page।
- PDF output-এ SSCC, GS1-128, Code 128, QR এবং অন্যান্য supported barcode format।
- Approved pallet label layout-এর জন্য template binding।
- Reprint ও audit evidence-এর জন্য deterministic output।
আপনার system-এর দায়িত্ব
- Pallet identity, product data, lot data, quantity, routing এবং warehouse rule।
- Barcode payload correctness, check digit, scanner test এবং label stock validation।
- Print station routing, reprint authorization এবং inventory state।
Production checklist
- Rendering-এর আগে SSCC বা GS1 payload validate করুন।
- Receiving ও shipping station-এর production scanner দিয়ে label scan করুন।
- Dense data, long product name এবং multiple warehouse language need test করুন।
- Reprint-এর জন্য template_id, source pallet ID এবং request ID record করুন।
- Warehouse state transition rendering API-এর বাইরে রাখুন।
দাবির সীমা
- gPdf pallet label PDF render করে; pallet বা warehouse inventory manage করে না।
- gPdf GS1 certification body নয়।
- Scanner acceptance এবং warehouse process correctness আপনার দায়িত্বে থাকে।
Pallet label WMS data-কে print output-এর সাথে যুক্ত করে
Pallet label workflow আপনার WMS বা ERP-তে শুরু হয়। কোন pallet, product, quantity, lot এবং route data label-এ থাকবে তা সেটি ঠিক করে। gPdf সেই data-কে PDF-এ রূপান্তর করে, যা warehouse print station output ও reprint করতে পারে।
Search intent যদি নির্দিষ্টভাবে SSCC-18 বা GS1 logistics labeling হয়, narrower SSCC page ব্যবহার করুন। Broader pallet label workflow-এর জন্য এই page ব্যবহার করুন।
FAQ
- gPdf কি SSCC pallet label generate করতে পারে?
- gPdf PDF output-এ SSCC barcode element render করতে পারে। SSCC value এবং GS1 semantics আপনার system own করে।
- gPdf কি pallet inventory manage করে?
- না। Inventory state WMS বা ERP system own করে। gPdf label PDF render করে।
- Pallet label কি Template Render ব্যবহার করতে পারে?
- হ্যাঁ। Pallet label layout approved হওয়ার পরে Template Render সাধারণত production path।
- gPdf কি GS1 label certify করে?
- না। gPdf vector PDF barcode render করে। Certification, scan test এবং acceptance আপনার দায়িত্বে থাকে।