/
Look up catalog items by...
Fast exact-SKU lookup within a catalog. Returns a lightweight projection; use Get a catalog item for the full record.
Security
(ApiKey and ApiSecret) or (UserGuid and UserToken and SupplierGuid)
- Mock serverhttps://docs.orderwerks.com/_mock/openapi/v1/catalog_items/sku-lookup
- Productionhttps://owapi.orderwerks.com/v1/catalog_items/sku-lookup
- ApiKey + ApiSecret
- UserGuid + UserToken + SupplierGuid
curl -i -X POST \
https://docs.orderwerks.com/_mock/openapi/v1/catalog_items/sku-lookup \
-H 'Content-Type: application/json' \
-H 'x-apiKey: YOUR_API_KEY_HERE' \
-H 'x-apiSecret: YOUR_API_KEY_HERE' \
-d '{
"catalogGuid": "5c4291bd-3307-470f-9505-c1cf7a89ee66",
"skuName": "WIDGET-001"
}'Response
{ "catalog_items": [ { "id": 0, "name": "string", "sku": "string", "description": "string" } ], "resource": "catalog_items" }