Skip to main content

Node Inputs

Required Fields

Currently, there are no required fields for this node.

Optional Fields

Limit:
Maximum number of companies to retrieve.
Example: 100
Properties:
Specific company properties to include in the response.
Example: ["name", "domain", "industry", "city", "state"]
Filter Groups:
Advanced filtering criteria to narrow down results.
Example: {"filterGroups": [{"filters": [{"propertyName": "city", "operator": "EQ", "value": "Boston"}]}]}

Node Output

Companies List:
A list of companies from your HubSpot CRM with their associated properties.
Example Output:
{
  "total": 250,
  "companies": [
    {
      "id": "123456789",
      "properties": {
        "name": "Acme Corporation",
        "domain": "acme.com",
        "industry": "Technology",
        "city": "San Francisco",
        "state": "California",
        "createdate": "2024-01-15T10:30:00Z"
      }
    },
    {
      "id": "987654321",
      "properties": {
        "name": "Tech Solutions Inc",
        "domain": "techsolutions.com",
        "industry": "Software",
        "city": "Boston",
        "state": "Massachusetts",
        "createdate": "2024-03-22T14:45:00Z"
      }
    }
  ]
}

Node Functionality

The HubSpot List Companies node:
  • Retrieves companies from your HubSpot CRM.
  • Supports custom property selection for targeted data retrieval.
  • Enables filtering by company properties.
  • Provides pagination support for large datasets.
  • Returns structured company data for workflow integration.
I