Get your Kit detail information by a specified master SKU number.
- URL: {API root URL}/items/kits/{kitSkuNumber}
- Method: GET
Request
URL Parameters
Parameter Name | Required | Data Type | Description |
---|
KitSKUNumber | Y | String | The number of the Kit master SKU |
Response
Attribute List
Element Name | Data Type | Description |
---|
MasterItemId | Integer | The internal ID of the Kit Master SKU. |
CustomerCode | String | Your unique customer code assigned by Best system |
MasterItemSKU | String | The number of the Kit Master SKU. |
MasterItemDescription | String | The description of the Kit Master SKU. |
KitType | String | Indicate the type of your Kit item |
Category | String | The value to indicate the category of your Kit. |
Status | String | Status of the Kit Master SKU, value will be “Enabled” or “Disabled”. |
Components | Array<Object> | |
Components/ComponentItemId | Integer | The internal ID of the component SKU |
Components/ComponentItemSKU | String | The number of the component SKU |
Components/ComponentItemDescription | String | The description of the component SKU |
Components/ComponentQty | Integer | The quantity of the component SKU |
Components/componentItemUnitPrice | Decimal | The 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
}
]
}