Catalog
SearchCatalogObjects
Searches for CatalogObject of any type by matching supported search attribute values, excluding custom attribute values on items or item variations, against one or more of the specified query expressions.
This (SearchCatalogObjects) endpoint differs from the SearchCatalogItems endpoint in the following aspects:
- SearchCatalogItems can only search for items or item variations, whereas SearchCatalogObjects can search for any type of catalog objects.
- SearchCatalogItems supports the custom attribute query filters to return items or item variations that contain custom attribute values, where SearchCatalogObjects does not.
- SearchCatalogItems does not support the include_deleted_objects filter to search for deleted items or item variations, whereas SearchCatalogObjects does.
- The both endpoints have different call conventions, including the query filter formats.
post/v2/catalog/search
Request body
Example request
{
"request_body": {
"limit": 100,
"object_types": [
"ITEM"
],
"query": {
"prefix_query": {
"attribute_name": "name",
"attribute_prefix": "tea"
}
}
}
}Response
Success
Example response
{
"objects": [
{
"id": "X5DZ5NWWAQ44CKBLKIFQGOWK",
"is_deleted": false,
"item_data": {
"category_id": "E7CLE5RZZ744BHWVQQEAHI2C",
"description": "A delicious blend of black tea.",
"name": "Tea - Black",
"product_type": "REGULAR",
"tax_ids": [
"ZXITPM6RWHZ7GZ7EIP3YKECM"
],
"variations": [
{
"id": "5GSZPX6EU7MM75S57OONG3V5",
"is_deleted": false,
"item_variation_data": {
"item_id": "X5DZ5NWWAQ44CKBLKIFQGOWK",
"name": "Regular",
"ordinal": 1,
"price_money": {
"amount": 150,
"currency": "USD"
},
"pricing_type": "FIXED_PRICING"
},
"present_at_all_locations": true,
"type": "ITEM_VARIATION",
"updated_at": "2017-10-26T15:27:31.626Z",
"version": 1509031651626
},
{
"id": "XVLBN7DU6JTWHJTG5F265B43",
"is_deleted": false,
"item_variation_data": {
"item_id": "X5DZ5NWWAQ44CKBLKIFQGOWK",
"name": "Large",
"ordinal": 2,
"price_money": {
"amount": 225,
"currency": "USD"
},
"pricing_type": "FIXED_PRICING"
},
"present_at_all_locations": true,
"type": "ITEM_VARIATION",
"updated_at": "2017-10-26T15:27:31.626Z",
"version": 1509031651626
}
],
"visibility": "PRIVATE"
},
"present_at_all_locations": true,
"type": "ITEM",
"updated_at": "2017-10-26T15:41:32.337Z",
"version": 1509032492337
},
{
"id": "NNNEM3LA656Q46NXLWCNI7S5",
"is_deleted": false,
"item_data": {
"category_id": "E7CLE5RZZ744BHWVQQEAHI2C",
"description": "Relaxing green herbal tea.",
"name": "Tea - Green",
"product_type": "REGULAR",
"tax_ids": [
"ZXITPM6RWHZ7GZ7EIP3YKECM"
],
"variations": [
{
"id": "FHYBVIA6NVBCSOVETA62WEA4",
"is_deleted": false,
"item_variation_data": {
"item_id": "NNNEM3LA656Q46NXLWCNI7S5",
"name": "Regular",
"ordinal": 1,
"price_money": {
"amount": 150,
"currency": "USD"
},
"pricing_type": "FIXED_PRICING"
},
"present_at_all_locations": true,
"type": "ITEM_VARIATION",
"updated_at": "2017-10-26T15:29:00.524Z",
"version": 1509031740524
}
],
"visibility": "PRIVATE"
},
"present_at_all_locations": true,
"type": "ITEM",
"updated_at": "2017-10-26T15:41:23.232Z",
"version": 1509032483232
}
]
}