StyloDocs
Workflow blocks

Update Company

Update a HubSpot company

View as Markdown

hubspot/update-company — Update a HubSpot company.

Where it appears

The Update Company block lives in the Integrations group of the Workflow Builder. Connect the Hubspot integration before adding it.

Fields

FieldTypeRequiredDefaultDescription
companyIdtext (supports references)YesHubSpot company ID to update. Use a literal ID or <StepName.field> to reference an ID from a previous step.
propertiesJsoncodeYesJSON object of HubSpot company properties to update. Only the keys you include are changed.

Inputs and outputs

Inputs are the configurable fields above. The block produces these outputs:

Outputs

Reference an output downstream with <Update Company.field>.

NameTypeDescription
successbooleanOperation succeeded
companyjsonUpdated company
errorstringError message if failed

Example

A minimal configuration for this block:

{
  "type": "hubspot/update-company",
  "config": {
    "companyId": "<PreviousStep.field>",
    "propertiesJson": "..."
  }
}

Limits and failure modes

  • Requires a connected Hubspot integration. Calls fail if that integration is disconnected or its authorization has expired.
  • Required fields (companyId, propertiesJson) must be set, or the block fails validation before it runs.
  • On failure the error output is populated; downstream blocks that reference other outputs may not receive values.

On this page