Ecommerce platforms

Seller और warehouse backends के लिए Amazon FBA label API

Seller या warehouse data से Amazon FBA-style product, carton और shipment label PDFs render करें, vector barcodes और template output के साथ.

PRIMARY API JSON Render
ENDPOINT /api/v1/pdf/render
SYSTEMS seller tool / warehouse backend / FBA prep service / ecommerce operations system
काम जो पूरा करना है

Seller, prep या warehouse system correct identifiers, barcode payloads और label rules determine कर चुका हो, उसके बाद Amazon FBA preparation workflows के लिए product, carton या shipment label PDFs render करें.

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

  • आपके system के पास FNSKU, carton, shipment या prep-service label data पहले से है.
  • Seller या warehouse print stations के लिए vector barcode labels PDF output में चाहिए.
  • Repeated label layouts को Template Render contracts बनाना है.
  • Prep, audit या exception handling के लिए deterministic reprints चाहिए.

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

  • आपको gPdf से official Amazon integration, app या SP-API connector चाहिए.
  • आपको Amazon से gPdf के through label certify कराना है.
  • आपको inventory, listing या shipment-plan management चाहिए.

कौन सा 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 - FNSKU-style barcode payload वाला product label.

{
  "pages": [
    {
      "width": 70,
      "height": 35,
      "elements": [
        {
          "type": "text",
          "x": 4,
          "y": 4,
          "content": "FNSKU X00ABC1234",
          "style": { "font_size": 8, "font_family": "NotoSans-Regular" }
        },
        {
          "type": "barcode",
          "format": "code128",
          "content": "X00ABC1234",
          "x": 4,
          "y": 12,
          "width": 60,
          "height": 12,
          "barcode_text": { "enabled": true, "position": "bottom" }
        },
        {
          "type": "text",
          "x": 4,
          "y": 29,
          "content": "SKU: ACME-FILTER-01",
          "style": { "font_size": 6, "font_family": "NotoSans-Regular" }
        }
      ]
    }
  ]
}

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

  • JSON Render payloads से label-sized PDF rendering.
  • Vector barcodes, text, SKU blocks, boxes और template binding.
  • Template Render से repeated label output.
  • Print stations, seller tools या warehouse workflows के लिए PDF responses.

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

  • Amazon account integration, SP-API calls, shipment plan data, FNSKU values और marketplace rules.
  • Correct barcode payloads, label dimensions, product data और scan acceptance.
  • Seller UX, prep workflow, storage और reprint authorization.

Production checklist

  1. Rendering से पहले active marketplace और fulfillment requirements confirm करें.
  2. Production label stock पर barcode payloads और physical print quality validate करें.
  3. Amazon integration और credential handling को gPdf से बाहर रखें.
  4. Reprints deterministic रहें, इसके लिए source label data store करें.
  5. Print-station integrations के लिए approved layouts को Template Render पर move करें.

Claim boundaries

  • gPdf official Amazon app या SP-API connector नहीं है.
  • gPdf PDFs render करता है; Amazon compliance और seller workflow rules आपकी जिम्मेदारी रहते हैं.
  • PDF rendering को Amazon label certification न मानें.

FBA labels data-driven PDF labels हैं

Amazon FBA preparation workflows को अक्सर product, carton या shipment labels चाहिए होते हैं. Rendering problem straightforward है: आपका system identifiers और label rules supply करता है, और gPdf PDF render करता है.

Marketplace integration को rendering से separate रखें. अपने seller या warehouse system में right identifiers fetch या compute करें, फिर final label payload के साथ gPdf call करें.

FAQ

क्या gPdf official Amazon FBA app है?
नहीं. Seller, prep या warehouse backend gPdf call कर सकता है, लेकिन gPdf official Amazon app या SP-API integration claim नहीं करता.
क्या gPdf FNSKU labels render कर सकता है?
gPdf barcode elements वाले PDF labels render कर सकता है. FNSKU value, label rules और Amazon workflow आपका system own करता है.
क्या FBA labels templates use करें?
Coordinates test करते समय JSON Render use करें. Label design और field contract approve होने के बाद Template Render use करें.
क्या gPdf Amazon के लिए labels certify करता है?
नहीं. Print quality, scan acceptance और marketplace compliance आपकी responsibility रहती है.