v1
latestOpenAPI 3.0.12026-07-242073551.1 MBProducts
Add Product
Add a new product to the system. With this endpoint, you can add product details in the request body, allowing the system to store them in the database, making the product available for further use in your shipment requests.
post/v4/products
Request body
Example request
{
"SkuCode": "SKU123",
"Description": "White Men Large T-shirt",
"Value": 19.99,
"Weight": "0.5",
"HSCode": "6109100010",
"CountryOfOrigin": "GB",
"CurrencyCode": "GBP",
"Hazmat": {
"UNCode": "1002",
"ProperShippingName": "Compressed Air",
"Class": "9",
"Id8000Category": "Nail Varnish",
"Quantity": 3.5,
"EmergencyActionCode": "E012"
}
}Response
The product was added successfully.
Example response
{
"SkuCode": "SKU123"
}