StyloDocs
Workflow blocks

Update Contact

Update a HubSpot contact

View as Markdown

hubspot/update-contact — Update a HubSpot contact.

Where it appears

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

Fields

FieldTypeRequiredDefaultDescription
contactIdtext (supports references)YesHubSpot contact ID to update. Use a literal ID or <StepName.field> to reference an ID from a previous step.
propertiesJsoncodeYesJSON object of HubSpot contact 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 Contact.field>.

NameTypeDescription
successbooleanOperation succeeded
contactjsonUpdated contact
errorstringError message if failed

Example

A minimal configuration for this block:

{
  "type": "hubspot/update-contact",
  "config": {
    "contactId": "<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 (contactId, 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