Skip to main content

Node Inputs

Required Fields

Company ID:
The unique identifier of the company in HubSpot.
Example: "123456789"

Optional Fields

Properties:
Specific company properties to retrieve.
Example: ["name", "domain", "industry", "numberofemployees", "annualrevenue"]
Associations:
Related objects to include in the response.
Available options:
  • contacts: Associated contacts
  • deals: Associated deals
  • tickets: Associated tickets
    Example: ["contacts", "deals"]

Node Output

Company Details:
Comprehensive information about the specified company including all requested properties and associations.
Example Output:
{
  "id": "123456789",
  "properties": {
    "name": "Acme Corporation",
    "domain": "acme.com",
    "industry": "Technology",
    "numberofemployees": "150",
    "annualrevenue": "5000000",
    "city": "San Francisco",
    "state": "California",
    "country": "United States",
    "phone": "+1-555-0123",
    "createdate": "2024-01-15T10:30:00Z",
    "hs_lastmodifieddate": "2024-10-18T15:20:00Z"
  },
  "associations": {
    "contacts": [
      {"id": "555001", "name": "John Doe"},
      {"id": "555002", "name": "Jane Smith"}
    ],
    "deals": [
      {"id": "888001", "name": "Enterprise Plan", "amount": 50000}
    ]
  }
}

Node Functionality

The HubSpot Get Company node:
  • Retrieves detailed information about a specific company.
  • Provides access to all company properties.
  • Includes associated contacts, deals, and tickets.
  • Supports custom property selection.
  • Returns complete company profile for enrichment workflows.
I