StyloDocs
Workflow blocks

Update Ticket

Update a ticket in HubSpot

View as Markdown

hubspot/update-ticket — Update a ticket in HubSpot.

Where it appears

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

Fields

FieldTypeRequiredDefaultDescription
ticketIdtext (supports references)YesHubSpot ticket ID to update. Use a literal ID or <StepName.field> to reference an ID from a previous step.
propertiesJsoncodeYesJSON object of HubSpot ticket properties to update (e.g. hs_pipeline_stage). 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 Ticket.field>.

NameTypeDescription
successbooleanOperation succeeded
ticketjsonUpdated ticket
errorstringError message if failed

Example

A minimal configuration for this block:

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