How Can We Help?
< All Topics
Print

Item Creation

Create your SKU information into Best system. Single SKU per request.

  • URL: {API root URL}/items
  • Method: POST

Request

Attribute List

Element NameRequiredData TypeDescription
customerCodeYString Your unique customer code assigned by Best system
skuYStringThe unique number to identity your SKU, up to 30 characters.
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": "Test Powerline II Cable (8ft)", 
    "description2": "MFi Certified for 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 ( The internal ID of the 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",
    "upc": "1244432232565",
    "sku": "YQ-9995557",
    "description": "Test Powerline Cable (12ft)",
    "description2": "MFi Certified for 11 / XS/XS Max/XR/X / 8/8 Plus / 7/7 Plus / 6/6 Plus",
    "itemUnit": "Each",
    "length": 5.45,
    "width": 3.0,
    "height": 2.0,
    "lengthUnit": "Inch",
    "weight": 1.12,
    "weightUnit": "Pound",
    "status": "Creating",
    "commodityCode": "",
    "countryOfOrigin": "CN",
    "expDateRequired": false,
    "mfgDateRequired": false,
    "countryOfOriginRequired": true,
    "serialNumberRequired": true,
    "batchNumberRequired": true,
    "batteryFlag": false,
    "hazmatFlag": false,
    "liquidFlag": false,
    "fragileFlag": false,
    "altUnit": "Inner",
    "altUPC": "12444135565",
    "altQuantity": 4,
    "altLength": 11.65,
    "altWidth": 3.26,
    "altHeight": 4.12,
    "altWeight": 4.25
}                    
Next Item Update by SKU
Table of Contents