Skip to main content

Node Inputs

Required Fields

Company ID:
The unique identifier of the company to update in HubSpot.
Example: "123456789"
Properties:
A key-value object containing the properties to update.
Example:
{
  "industry": "Software",
  "numberofemployees": "200",
  "annualrevenue": "7500000",
  "city": "Boston"
}

Optional Fields

Currently, there are no optional fields for this node beyond the properties object.

Node Output

Update Confirmation:
Confirmation of the update operation with the updated company information.
Example Output:
{
  "id": "123456789",
  "status": "updated",
  "properties": {
    "name": "Acme Corporation",
    "domain": "acme.com",
    "industry": "Software",
    "numberofemployees": "200",
    "annualrevenue": "7500000",
    "city": "Boston",
    "state": "California",
    "hs_lastmodifieddate": "2024-10-19T10:30:00Z"
  },
  "updated_properties": ["industry", "numberofemployees", "annualrevenue", "city"]
}

Node Functionality

The HubSpot Update Company node:
  • Updates existing company records in HubSpot CRM.
  • Supports updating multiple properties in a single operation.
  • Preserves existing properties not included in the update.
  • Automatically updates modification timestamps.
  • Returns confirmation with updated property values.
I