GET v2/sku/list/byType/{skuTypeID}

Retrieve list of SKUs with minimal information filtered by type

Request Information

URI Parameters

NameDescriptionTypeAdditional information
skuTypeID

integer

Required

Body Parameters

None.

Response Information

Resource Description

SKUModel
NameDescriptionTypeAdditional information
SKUId

Unique identifier of a SKU

integer

None.

IsActive

Indicates if SKU is active or not

boolean

None.

PartNumber

Human readable identifier of the SKU

string

None.

PartDescription

Description of the SKU

string

None.

SKUCategory

Category of SKU

SKUCategoryModel

None.

SKUSubCategory

Sub Category of SKU

SKUCategorySubCategoryModelv6

None.

ImageURL

URL to the SKU image

string

None.

FileCount

integer

None.

IsNonSerialized

Indicates if SKU is non-serialized

boolean

None.

IsLotTraceable

Indicates if SKU is lot traceable

boolean

None.

ReceiveNonSerialized

Indicates if SKU is received as a non-serialized item

boolean

None.

ReceivePreLabeled

Indicates if SKU is received with a barcode already on it

boolean

None.

NonSerializedSKUID

Non-Serialized SKU ID

integer

None.

NumberPerPallet

Number per pallet

integer

None.

PurchaseUOM

Purchase Unit of Measure

UnitOfMeasureModel

None.

StockUOM

Stock Unit of Measure

UnitOfMeasureModel

None.

ConversionRatio

Conversion ratio from Purchased to Stock

decimal number

None.

StandardCost

Conversion ratio from Purchased to Stock

decimal number

None.

VAT

decimal number

None.

TruckloadQuantity

integer

None.

Mask

string

None.

SKUType

SKUTypeModel

None.

IsIntegrationControlled

boolean

None.

Weight

decimal number

None.

Height

decimal number

None.

Length

decimal number

None.

Width

decimal number

None.

DimensionUOM

UnitOfMeasureModel

None.

WeightUOM

UnitOfMeasureModel

None.

IsCertified

boolean

None.

CertificationDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "skuId": 1,
  "isActive": true,
  "partNumber": "sample string 3",
  "partDescription": "sample string 4",
  "skuCategory": {
    "skuCategoryID": 1,
    "isSystem": true,
    "isIntegrationControlled": true,
    "isActive": true,
    "skuCategory": "sample string 5"
  },
  "skuSubCategory": {
    "skuSubCategoryId": 1,
    "skuCategoryId": 2,
    "skuSubCategory": "sample string 3"
  },
  "imageURL": "sample string 5",
  "fileCount": 6,
  "isNonSerialized": true,
  "isLotTraceable": true,
  "receiveNonSerialized": true,
  "receivePreLabeled": true,
  "nonSerializedSKUID": 11,
  "numberPerPallet": 12,
  "purchaseUOM": {
    "unitOfMeasureID": 1,
    "unitOfMeasure": "sample string 2",
    "unitCode": "sample string 3"
  },
  "stockUOM": {
    "unitOfMeasureID": 1,
    "unitOfMeasure": "sample string 2",
    "unitCode": "sample string 3"
  },
  "conversionRatio": 13.0,
  "standardCost": 14.0,
  "vat": 15.0,
  "truckloadQuantity": 16,
  "mask": "sample string 17",
  "skuType": {
    "skuTypeID": 1,
    "skuType": "sample string 2"
  },
  "isIntegrationControlled": true,
  "weight": 19.0,
  "height": 20.0,
  "length": 21.0,
  "width": 22.0,
  "dimensionUOM": {
    "unitOfMeasureID": 1,
    "unitOfMeasure": "sample string 2",
    "unitCode": "sample string 3"
  },
  "weightUOM": {
    "unitOfMeasureID": 1,
    "unitOfMeasure": "sample string 2",
    "unitCode": "sample string 3"
  },
  "isCertified": true,
  "certificationDate": "2025-11-08T08:23:02.4228565+00:00"
}