PackNet DIM Product Lookup Endpoint
The MultiLookup endpoint allows users to look up product details for one or more item identifiers (e.g., IPC, SKU, item number). Send an array of identifiers in the request body and receive a detailed array of results, including product dimensions, supplier info, audit metadata, and more.
[POST] https://api.prod1.packnet.app/Dim/v1/MultiLookup
Status Codes
200 OK: Command received and processed.
400 Bad request: The request cannot be processed due to apparent client error.
403 Forbidden: The user is not allowed to make the request.
404 Not found: The requested resource cannot be found.
[ "123654789147" ]
Response Value Definitions:
reason - This variable will be null unless the product lookup fails.
isFound - Indicates when a product found. When true, the product is found. When false, the product is not found.
[
{
"reason": null,
"isFound": true,
"product": {
"tenantId": "846bfb7e-13d1-44a0-ad8b-b39f41b775cc",
"identifier": null,
"identifiers": {
"upc": "123654789147",
"sku": "6660666",
"itemNumber": "B0C5F2KVH7"
},
"name": "Large Self Watering Pots",
"description": "12/10/9 Plastic Planters with High Drainage
Holes and Deep Reservoir for Indoor Outdoor Garden Plants and
Flowers, White with Brown",
"weight": 3.41,
"requiresPadding": false,
"useDefaultPadding": false,
"customAttributes": {},
"dimensions": {
"length": 12,
"width": 12,
"height": 7.5
},
"paddedDimensions": {
"length": 12,
"width": 12,
"height": 7.5
},
"canContain": true,
"voidFill": {
"length": 11.75,
"width": 11.75,
"height": 7
},
"canNest": true,
"nesting": {
"nestGrowthDimension1": 0,
"nestGrowthDimension2": 0,
"nestGrowthDimension3": 1,
"nestMax": 3
},
"orientationLocked": false,
"orientation": "StandingUp",
"isSingleLayer": false,
"audit": {
"created": "2025-02-21T21:13:49.0827198+00:00",
"updated": "2025-07-09T00:18:10.5451025+00:00",
"lastUpdatedById": "846bfb7e-13d1-44a0-ad8b-b39f41b775cc",
"totalTimesUpdated": 7
},
"supplier": "Plants & Pots Distribution",
"supplierNumber": 9456,
"manufacturer": "UOUZ",
"comment": "This is a plant and pot comment"
},
"mainId": "123654789147"
}
]