Warehouse और 3PL workflows के लिए Pallet label API
Warehouse, 3PL, retail और logistics workflows के लिए SSCC, GS1-128, text blocks और reprint-safe templates वाले pallet label PDFs generate करें.
/api/v1/pdf/render WMS, ERP या 3PL data से pallet label PDFs render करें, ताकि warehouse teams pallets identify कर सकें, SSCC या GS1 barcodes scan कर सकें और receiving, shipping या inventory moves के दौरान वही label reprint कर सकें.
यह API कब इस्तेमाल करें
- आपके WMS के पास pallet ID, SKU या GTIN data, quantity, lot और destination पहले से है.
- आपको SSCC, GS1-128 या अन्य supported barcode formats वाला PDF label चाहिए.
- Same source payload से deterministic reprints चाहिए.
- Layout को stable Template Render contract बनाना है.
यह क्या replace नहीं करता
- आपको gPdf से inventory, palletization या warehouse tasks manage कराने हैं.
- आपको 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 चाहिए, तब इसका उपयोग करें।
Minimal 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 क्या handle करता है
- Text, boxes और barcode elements वाले label-sized PDF pages.
- PDF output में SSCC, GS1-128, Code 128, QR और अन्य supported barcode formats.
- Approved pallet label layouts के लिए template binding.
- Reprints और audit evidence के लिए deterministic output.
आपका system क्या संभालता है
- Pallet identity, product data, lot data, quantity, routing और warehouse rules.
- Barcode payload correctness, check digits, scanner tests और label stock validation.
- Print station routing, reprint authorization और inventory state.
Production checklist
- Rendering से पहले SSCC या GS1 payload validate करें.
- Receiving और shipping stations पर production scanners से labels scan करें.
- Dense data, long product names और multiple warehouse language needs test करें.
- Reprints के लिए template_id, source pallet ID और request ID record करें.
- Warehouse state transitions को rendering API से बाहर रखें.
Claim boundaries
- gPdf pallet label PDFs render करता है; pallets या warehouse inventory manage नहीं करता.
- gPdf GS1 certification body नहीं है.
- Scanner acceptance और warehouse process correctness आपकी responsibility रहती है.
Pallet labels WMS data को print output से जोड़ते हैं
Pallet label workflow आपके WMS या ERP से शुरू होता है. वही decide करता है कि label पर कौन सा pallet, product, quantity, lot और route data belong करता है. gPdf उस data को PDF में बदलता है जिसे warehouse print stations output और reprint कर सकें.
जब search intent specifically SSCC-18 या GS1 logistics labeling हो, तब narrower SSCC page use करें. Broader pallet label workflow के लिए यह page use करें.
FAQ
- क्या gPdf SSCC pallet labels generate कर सकता है?
- gPdf PDF output में SSCC barcode elements render कर सकता है. SSCC value और GS1 semantics आपका system own करता है.
- क्या gPdf pallet inventory manage करता है?
- नहीं. WMS या ERP systems inventory state own करते हैं. gPdf label PDF render करता है.
- क्या pallet labels Template Render use कर सकते हैं?
- हाँ. Pallet label layout approve होने के बाद Template Render आम तौर पर production path है.
- क्या gPdf GS1 labels certify करता है?
- नहीं. gPdf vector PDF barcodes render करता है. Certification, scan tests और acceptance आपकी जिम्मेदारी रहते हैं.