StyloDocs
Workflow blocks

Remove Tags

Remove tags from a ticket

View as Markdown

zendesk/remove-tags — Remove tags from a ticket.

Where it appears

The Remove Tags block lives in the Integrations group of the Workflow Builder. Connect the Zendesk integration before adding it.

Fields

FieldTypeRequiredDefaultDescription
ticketIdtext (supports references)YesNumeric Zendesk ticket ID to remove tags from. Use a literal number or <StepName.field> to reference an ID from a previous step.
tagstext (supports references)YesComma-separated tags to remove from the ticket. Other existing tags are left in place. Accepts literal text or <StepName.field>.

Inputs and outputs

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

Outputs

Reference an output downstream with <Remove Tags.field>.

NameTypeDescription
successbooleanSuccess status
ticketjsonUpdated ticket (object — fields: id, subject, description, status, priority, type, tags, requester_id, assignee_id, group_id, custom_fields, created_at, updated_at)
errorstringError message if failed

Example

A minimal configuration for this block:

{
  "type": "zendesk/remove-tags",
  "config": {
    "ticketId": "<PreviousStep.field>",
    "tags": "<PreviousStep.field>"
  }
}

Limits and failure modes

  • Requires a connected Zendesk integration. Calls fail if that integration is disconnected or its authorization has expired.
  • Required fields (ticketId, tags) 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