List catalog items Run in API Explorer
Ask AI
Retrieve a list of catalog items belonging to the authenticated organization.
GET
/v1/catalog/items
curl \
--request GET 'https://api.pattern.com/hub/v1/catalog/items' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": 42,
"name": "string",
"mpn": "string",
"upc": "string",
"hs_code": "string",
"is_hazmat": true,
"cold_storage_type": "string",
"can_expire": true,
"is_bundle": true,
"is_bundle_component": true,
"bundle_components": [
{
"id": 42,
"mpn": "string",
"name": "string"
}
],
"parent_bundles": [
{
"id": 42,
"mpn": "string",
"name": "string"
}
]
}
]