Barcodes और retail

GS1 logistics PDFs के लिए SSCC label API

Logistics, pallet, carton और warehouse workflows के लिए PDF में SSCC-18 barcode labels render करें, जबकि GS1 payload correctness आपका system own करे.

PRIMARY API JSON Render
ENDPOINT /api/v1/pdf/render
SYSTEMS WMS / 3PL backend / retail logistics system / warehouse print service
काम जो पूरा करना है

Pallet, carton या logistics units के लिए SSCC-18 barcode labels को vector PDF output के रूप में render करें, जब आपका system serial shipping container code assign और GS1 semantics verify कर चुका हो.

यह API कब इस्तेमाल करें

  • आपका system SSCC value और related application identifiers पहले से own करता है.
  • Scannable SSCC barcode और human-readable text वाला PDF label चाहिए.
  • Warehouse या 3PL print stations के लिए repeated SSCC label layouts चाहिए.
  • SSCC labels को broader pallet या warehouse label workflows से connect करना है.

यह क्या replace नहीं करता

  • आपको gPdf से GS1 prefix issuance, check digit creation या compliance certification चाहिए.
  • आपको inventory या shipment state management चाहिए.
  • आपको carrier label purchase या rating चाहिए.

कौन सा endpoint call करें

PRIMARY

/api/v1/pdf/render

JSON Render इस workflow का default path है।

SECONDARY 1

/api/v1/template-render

जब workflow को related API path, template contract या capabilities lookup चाहिए, तब इसका उपयोग करें।

Minimal request

POST /api/v1/pdf/render - SSCC-18 label barcode.

{
  "pages": [
    {
      "size": "label_100_150",
      "elements": [
        {
          "type": "text",
          "x": 6,
          "y": 8,
          "content": "SSCC",
          "style": { "font_size": 12, "font_family": "NotoSans-Regular" }
        },
        {
          "type": "barcode",
          "format": "sscc-18",
          "content": "000123456789012345",
          "x": 6,
          "y": 28,
          "width": 86,
          "height": 30,
          "barcode_text": { "enabled": true, "position": "bottom" }
        }
      ]
    }
  ]
}

gPdf क्या handle करता है

  • PDF pages के अंदर vector SSCC barcode rendering.
  • Text, boxes, barcode text और optional template binding के साथ label layout.
  • Print, storage या warehouse reprint workflows के लिए PDF output.
  • Request validation fail होने पर shared error envelope.

आपका system क्या संभालता है

  • GS1 company prefix, extension digit, serial reference, check digit और encoded payload.
  • Warehouse process rules, scanner acceptance और label stock validation.
  • SSCC consume करने वाला EDI, ASN, carrier या trading-partner workflow.

Production checklist

  1. gPdf call करने से पहले SSCC value और check digit validate करें.
  2. Production scanners और label stock से output scan करें.
  3. कौन से warehouse events SSCC labels create और reprint करते हैं, document करें.
  4. Approved SSCC label layouts के लिए Template Render use करें.
  5. Trading-partner compliance checks को render call से बाहर रखें.

Claim boundaries

  • gPdf SSCC barcode को PDF में render करता है; SSCC values issue या certify नहीं करता.
  • GS1 और trading-partner compliance आपकी responsibility रहती है.
  • SSCC labels carrier shipment creation imply नहीं करते.

SSCC labels focused barcode workflow हैं

SSCC labels general pallet labels से narrower हैं. Important fact serial shipping container code itself है. gPdf code को PDF में render करता है; code assignment, GS1 rules और trading-partner requirements आपका system own करता है.

FAQ

क्या gPdf SSCC number create कर सकता है?
नहीं. आपका system SSCC value create और validate करता है. gPdf उसे PDF में barcode के रूप में render करता है.
कौन सा barcode format use करना चाहिए?
SSCC barcode element render करते समय supported SSCC alias जैसे sscc-18 use करें.
क्या यह template हो सकता है?
हाँ. Layout और field mapping approve होने के बाद अधिकांश SSCC labels को Template Render पर move करना चाहिए.
क्या यह GS1 compliance certify करता है?
नहीं. gPdf vector barcode output render करता है. Compliance और scanner acceptance अलग responsibilities हैं.