How Can We Help?
< All Topics
Print

Get Kit Item Information

Get your Kit detail information by a specified master SKU number.

  • URL: {API root URL}/items/kits/{kitSkuNumber}
  • Method: GET

Request

URL Parameters

Parameter NameRequiredData TypeDescription
KitSKUNumberYStringThe number of the Kit master SKU

Response

Attribute List

Element NameData TypeDescription
MasterItemIdIntegerThe internal ID of the Kit Master SKU.
CustomerCodeStringYour unique customer code assigned by Best system
MasterItemSKUStringThe number of the Kit Master SKU.
MasterItemDescriptionStringThe description of the Kit Master SKU.
KitTypeStringIndicate the type of your Kit item
CategoryStringThe value to indicate the category of your Kit.
StatusStringStatus of the Kit Master SKU, value will be “Enabled” or “Disabled”.
ComponentsArray<Object> 
Components/ComponentItemIdIntegerThe internal ID of the component SKU
Components/ComponentItemSKUStringThe number of the component SKU
Components/ComponentItemDescriptionStringThe description of the component SKU
Components/ComponentQtyIntegerThe quantity of the component SKU
Components/componentItemUnitPriceDecimalThe price of each component item in the same kit. This value will be used to create the commercial invoice for all international shipments.

Response Example

{
    "masterItemId": 70517,
    "masterItemSku": "SETMASTER-TEST-001",
    "masterItemDescription": "This is a Set Master SKU",
    "customerCode": "USSAND",
    "kitType": "SetMaster",
    "status": "Enabled",
    "components": [
        {
            "componentItemId": 69733,
            "componentItemSku": "C001",
            "componentItemDescription": "TEST ITEM",
            "componentQty": 1,
            "componentItemUnitPrice": 9.99
        },
        {
            "componentItemId": 69734,
            "componentItemSku": "C002",
            "componentItemDescription": "TEST ITEM",
            "componentQty": 1,
            "componentItemUnitPrice": 9.99
        }
    ]
}
Previous Kit Item Update
Next Query Kit List
Table of Contents