products_search
Search and filter HubSpot products using queries, property filters, and sorting options to locate specific items in your product catalog.
Instructions
Search products
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | ||
| limit | No | ||
| after | No | ||
| sorts | No | ||
| properties | No | ||
| filterGroups | Yes |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"type": "string"
},
"filterGroups": {
"items": {
"additionalProperties": false,
"properties": {
"filters": {
"items": {
"additionalProperties": false,
"properties": {
"operator": {
"enum": [
"EQ",
"NEQ",
"LT",
"LTE",
"GT",
"GTE",
"BETWEEN",
"IN",
"NOT_IN",
"HAS_PROPERTY",
"NOT_HAS_PROPERTY",
"CONTAINS_TOKEN",
"NOT_CONTAINS_TOKEN"
],
"type": "string"
},
"propertyName": {
"type": "string"
},
"value": {},
"values": {
"type": "array"
}
},
"required": [
"propertyName",
"operator"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"filters"
],
"type": "object"
},
"type": "array"
},
"limit": {
"minimum": 1,
"type": "number"
},
"properties": {
"items": {
"type": "string"
},
"type": "array"
},
"query": {
"type": "string"
},
"sorts": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"filterGroups"
],
"type": "object"
}