How Can We Help?
< All Topics
Print

Item Update by SKU

Update your SKU information by SKU number into Best system, only single SKU can be updated in single call.

  • URL: {API root URL}/items/{customerCode}/{sku}
  • Method: PUT

Request

URL Parameters

Attribute List

Element NameRequiredData TypeDescription
CustomerCodeYStringYour unique customer code assigned by Best system
SKUYStringThe unique number to identity your SKU
DescriptionYStringThe name of title of your SKU
Description2StringAdditional detail description of your SKU
UPCYStringThe UPC code or barcode that will be printed on your product label, Best warehouse will scan this code to identify your product when receiving or picking your SKU.
UPC2StringAdditional UPC code
UPC3StringAnother additional UPC code
LengthYDecimalThe length of your SKU by unit Inch.
WidthYDecimalThe width of your SKU by unit Inch.
HeightYDecimalThe height of your SKU by unit Inch.
WeightYDecimalThe weight of your SKU by unit Pound.
CommodityCodeStringInternational tariff code, provide this code if your item will ship to a place out of US.
CountryOfOriginStringThe ISO Alpha-2 code of the originally produced country for your item, provide it if your item will ship to a place out of US. To check the Alpha-2 country code for each country, please refer to below page: https://www.iso.org/obp/ui/#search
BatteryFlagBooleanIndicate if this item includes any battery, system will set to False if you don’t specify value.
HazmatFlagBooleanIndicate if this item is hazmat, system will set to False if you don’t specify value.
LiquidFlagBooleanIndicate if this item includes liquid, system will set to False if you don’t specify value.
FragileFlagBooleanIndicate if this item is fragile product, system will set to False if you don’t specify value.
MfgDateRequiredBooleanIndicate if this item is required to collect the manufacturing date when receiving this product into Best warehouse. Please always contact your AM to enable this feature in your account profile before you send True for this field. System will set to False if you don’t specify value.
ExpDateRequiredBooleanIndicate if this item is required to collect the expiration date when receiving this product into Best warehouse. Please always contact your AM to enable this feature in your account profile before you send True for this field. System will set to False if you don’t specify value.
BatchNumberRequiredBooleanIndicate if this item is required to collect the batch number when receiving this product into Best warehouse. Please always contact your AM to enable this feature in your account profile before you send True for this field. System will set to False if you don’t specify value.
CountryOfOriginRequiredBooleanIndicate if this item is required to collect the country of origin when receiving this product into Best warehouse. Please always contact your AM to enable this feature in your account profile before you send True for this field. System will set to False if you don’t specify value.
SerialNumberRequiredBooleanIndicate if this item is required to collect the serial number when receiving this product into Best warehouse. System will set to False if you don’t specify value.
AltUnitStringIndicate the unit type other than single piece for your SKU if it’s applicable, the available value is “Carton”.
AltQuantityIntegerIndicate how many individual pieces are contained in each pack based on the unit type specified in AltUnit.
AltUPCStringThe UPC or barcode of your pack based on the unit type specifiedin AltUnit.
AltLengthDecimalThe length in unit Inch of your pack based on the unit type specifiedin AltUnit.
AltWidthDecimalThe width in unit Inch of your pack based on the unit type specifiedin AltUnit.
AltHeightDecimalThe height in unit Inch of your pack based on the unit type specifiedin AltUnit.
AltWeightDecimalThe weight in unit Pound of your pack based on the unit type specifiedin AltUnit.

Request Example

{
    "customerCode": "TEST",
    "sku": "YQ-9999997",
    "upc": "124445622565",
    "upc2": "124445622566",
    "upc3": "124445622567",
    "description": "Anker Powerline Cable (8ft)", 
    "description2": "MFi Certified for iPhone 11 / XS/XS Max/XR/X / 8/8 Plus / 7/7 Plus / 6/6 Plus",
    "commodityCode": "",
    "countryOfOrigin": "CN",
    "length": 5.45,
    "width": 3,
    "height": 2,
    "weight": 1.2,
    "expDateRequired": false,
    "MfgDateRequired": false,
    "CountryOfOriginRequired": true,
    "SerialNumberRequired": true,
    "BatchNumberRequired": true,
    "BatteryFlag": false,
    "HazmatFlag": false,
    "LiquidFlag": false,
    "FragileFlag": false,
    "altUnit": "Carton",
    "altUPC": "124445622565",
    "altQuantity": 4,
    "altLength": 11.65,
    "altWidth": 3.6,
    "altHeight": 4.12,
    "altWeight": 4.25
  } 

Response

Attribute List

Element NameData Type
Id (Internal ID of SKU)Integer
CustomerCodeString
SKUString
DescriptionString
Description2String
UPCString
UPC2String
UPC3String
LengthDecimal
WidthDecimal
HeightDecimal
WeightDecimal
CommodityCodeString
CountryOfOriginString
BatteryFlagBoolean
HazmatFlagBoolean
LiquidFlagBoolean
FragileFlagBoolean
MfgDateRequiredBoolean
ExpDateRequiredBoolean
BatchNumberRequiredBoolean
CountryOfOriginRequiredBoolean
SerialNumberRequiredBoolean
AltUnitString
AltQuantityInteger
AltUPCString
AltLengthDecimal
AltWidthDecimal
AltHeightDecimal
AltWeightDecimal

Response Example

{
    "id": 57234,
    "customerCode": "TEST",
    "sku": "YQ-9999997",
    "upc": "124445622565",
    "upc2": "124445622566",
    "upc3": "124445622567",
    "description": "Anker Powerline Cable (8ft)", 
    "description2": "MFi Certified for iPhone 11 / XS/XS Max/XR/X / 8/8 Plus / 7/7 Plus / 6/6 Plus",
    "commodityCode": "",
    "countryOfOrigin": "CN",
    "length": 5.45,
    "width": 3,
    "height": 2,
    "weight": 1.2,
    "expDateRequired": false,
    "MfgDateRequired": false,
    "CountryOfOriginRequired": true,
    "SerialNumberRequired": true,
    "BatchNumberRequired": true,
    "BatteryFlag": false,
    "HazmatFlag": false,
    "LiquidFlag": false,
    "FragileFlag": false,
    "altUnit": "Inner",
    "altUPC": "124445622565",
    "altQuantity": 4,
    "altLength": 11.65,
    "altWidth": 3.6,
    "altHeight": 4.12,
    "altWeight": 4.25
  }
Previous Item Creation
Next Query Item List
Table of Contents