Seller ও warehouse backend-এর জন্য Amazon FBA label API
Seller বা warehouse data থেকে vector barcode ও template output-সহ Amazon FBA-style product, carton এবং shipment label PDF render করুন।
/api/v1/pdf/render Seller, prep বা warehouse system সঠিক identifier, barcode payload এবং label rule ঠিক করার পরে Amazon FBA preparation workflow-এর জন্য product, carton বা shipment label PDF render করুন।
কখন এই API ব্যবহার করবেন
- আপনার system-এ FNSKU, carton, shipment বা prep-service label data আগে থেকেই আছে।
- Seller বা warehouse print station-এর জন্য vector barcode label PDF output দরকার।
- Repeated label layout Template Render contract হতে চান।
- Prep, audit বা exception handling-এর জন্য deterministic reprint দরকার।
এটি কী replace করে না
- gPdf থেকে official Amazon integration, app বা SP-API connector দরকার।
- Amazon gPdf-এর মাধ্যমে label certify করবে বলে আশা করছেন।
- Inventory, listing বা shipment-plan management দরকার।
কোন 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 - 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 কী করে
- JSON Render payload থেকে label-sized PDF rendering।
- Vector barcode, text, SKU block, box এবং template binding।
- Template Render দিয়ে repeated label output।
- Print station, seller tool বা warehouse workflow-এর জন্য PDF response।
আপনার system-এর দায়িত্ব
- Amazon account integration, SP-API call, shipment plan data, FNSKU value এবং marketplace rule।
- সঠিক barcode payload, label dimension, product data এবং scan acceptance।
- Seller UX, prep workflow, storage এবং reprint authorization।
Production checklist
- Rendering-এর আগে active marketplace এবং fulfillment requirement confirm করুন।
- Production label stock-এ barcode payload ও physical print quality validate করুন।
- Amazon integration এবং credential handling gPdf-এর বাইরে রাখুন।
- Reprint deterministic রাখতে source label data store করুন।
- Print-station integration-এর জন্য approved layout Template Render-এ move করুন।
দাবির সীমা
- gPdf official Amazon app বা SP-API connector নয়।
- gPdf PDF render করে; Amazon compliance এবং seller workflow rule আপনার দায়িত্বে থাকে।
- PDF rendering-কে Amazon label certification হিসেবে treat করবেন না।
FBA label data-driven PDF label
Amazon FBA preparation workflow-তে প্রায়ই product, carton বা shipment label দরকার হয়। Rendering problem সরল: আপনার system identifier এবং label rule দেয়, আর gPdf PDF render করে।
Marketplace integration rendering থেকে আলাদা রাখুন। আপনার seller বা warehouse system-এ সঠিক identifier 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 দাবি করে না।
- gPdf কি FNSKU label render করতে পারে?
- gPdf barcode element-সহ PDF label render করতে পারে। FNSKU value, label rule এবং Amazon workflow আপনার system own করে।
- FBA label কি template ব্যবহার করা উচিত?
- Coordinate test করার সময় JSON Render ব্যবহার করুন। Label design ও field contract approved হলে Template Render ব্যবহার করুন।
- gPdf কি Amazon-এর জন্য label certify করে?
- না। Print quality, scan acceptance এবং marketplace compliance আপনার দায়িত্ব।