Master Data
Product
7 min
use this api to sync product level metadata such as item codes, descriptions, dimensions, and weights transportone uses this data to calculate load volume, optimize routing, and support freight billing overview a product refers to any material that the shipper is either selling or procuring your erp system holds product master data — including sku codes, dimensions, and packaging types — which must be pushed to tms before dispatches are planned this api allows you to register products with all required physical properties so that transportone can accurately calculate capacity and cost when to use this before pushing transport orders that reference products when syncing product master data from your erp to tms required for accurate shipment planning and cost calculation endpoint post /api/v1/products headers authorization bearer \<accesstoken> x coreos access \<your access key> content type application/json request payload json { "uniquecode" "pc1231", "productname" "3 ton lg ac", "category" "electronics", "measurementunit" "box", "qtyperunit" 1, "producttype" "finished goods", "weight" 100, "weightunit" "kgs", "length" 4, "breadth" 1, "height" 1 5, "dimensionunit" "ft", "volumeunit" "cft", "status" "active", "repackingrequired" false, "volume" 6 } success response { "success" true, "message" "product created", "productid" "prod56789" } field reference field type required description uniquecode string ✅ unique identifier/code for the product (sku) productname string ✅ name of the product category string ✅ product category (e g , electronics, furniture) measurementunit string ✅ unit used for handling (e g , box, bundle, pcs) qtyperunit integer ✅ number of items per handling unit producttype string ❌ type of product (e g , finished goods, raw materials, spares) weight number ❌ weight of the product weightunit string ❌ unit for weight (e g , kgs, mt) length number ❌ length in the specified dimension unit breadth number ❌ breadth in the specified dimension unit height number ❌ height in the specified dimension unit dimensionunit string ❌ unit for dimensions (e g , ft, cm) volumeunit string ❌ unit for calculated volume (e g , cft, ccm) volume number ❌ total volume (required if dimensions not provided) repackingrequired boolean ✅ whether repacking is required before dispatch (true or false) status string ❌ product status (active, inactive) your master data setup is now complete what’s next? 👉 start sending transport orders → once product, facility, and customer data are synced, you can begin planning and dispatch 🔙 back to master data overview →
