HUBSPOT_COMPANY_SEARCH - Buscar Empresas por Filtros
O que é este Node?
O HUBSPOT_COMPANY_SEARCH é o node responsável por buscar empresas usando filtros no HubSpot CRM.
Parâmetros
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| resource | string | Sim | Deve ser "companies" |
| operation | string | Sim | Deve ser "search" |
| config.apiKey | string | Sim | API Key do HubSpot |
| filters | array | Sim | Filtros de busca |
| limit | number | Não | Limite (padrão: 100) |
Exemplo: Buscar por Nome
{"name": "HubSpot - Buscar Empresa Nome", "nodes": [{"id": "start_1", "type": "start", "position": {"x": 100, "y": 100}, "data": {"label": "Início"}}, {"id": "hubspot_1", "type": "hubspot", "position": {"x": 300, "y": 100}, "data": {"label": "Buscar", "parameters": {"resource": "companies", "operation": "search", "config": {"apiKey": "{{hubspot_api_key}}"}, "filters": [{"filters": [{"propertyName": "name", "operator": "EQ", "value": "{{company_name}}"}]}]}}}, {"id": "end_1", "type": "end", "position": {"x": 500, "y": 100}, "data": {"label": "Fim"}}], "edges": [{"source": "start_1", "target": "hubspot_1"}, {"source": "hubspot_1", "target": "end_1"}]}