hubspot_search_contacts
Search for HubSpot contacts using email, name, or other criteria to quickly find customer information and manage CRM data.
Instructions
Search for contacts in HubSpot using a query string
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Maximum number of contacts to return (default 10) | |
| propertyList | No | List of properties to include in the results | |
| query | Yes | Search query string (email, name, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Maximum number of contacts to return (default 10)",
"type": "number"
},
"propertyList": {
"description": "List of properties to include in the results",
"items": {
"type": "string"
},
"type": "array"
},
"query": {
"description": "Search query string (email, name, etc.)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}