Skip to content
ActionServiceNowUpdated May 2026

How do I update a ServiceNow incident?

Short answer: Drop the "ServiceNowUpdate ServiceNow Incident" action anywhere in your workflow, map the inputs from upstream nodes, and publish.

Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Incident Sys ID
sys_id
stringRequiredIncident Sys ID
State
state
optionsOptionalState. Options: New, In Progress, On Hold, Resolved, Closed
Work Notes
work_notes
stringOptionalWork Notes
Close Notes
close_notes
stringOptionalClose Notes
Sample request
{
"sys_id": "{{trigger.sys_id}}",
"state": "{{trigger.state}}",
"work_notes": "{{trigger.work_notes}}",
"close_notes": "{{trigger.close_notes}}"
}
Returns
{
"result": {
"state": "6",
"number": "INC0012345",
"sys_id": "abc123",
"resolved_at": "2026-04-11 14:00:00"
}
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for Update ServiceNow Incident.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about Update ServiceNow Incident.

What does the Update ServiceNow Incident action do in ServiceNow?
Updates fields — state, assignee, work_notes (internal), comments (user-visible). For "monitoring auto-resolved → close ticket" or "AI-summarised investigation → log as work note" workflows.
What inputs does Update ServiceNow Incident require?
Required: Incident Sys ID. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if ServiceNow returns an error?
The workflow pauses on the failed node, the error message is captured in the run log, and you can retry the run with one click. Auto-retry policies are configurable per workflow with exponential backoff up to 5 attempts.
Does Update ServiceNow Incident support batch operations?
Yes. Run Update ServiceNow Incident inside a Loop node to process arrays. Tiny Command handles ServiceNow's rate limits automatically so you don't have to throttle manually.
More actions

Other ServiceNow actions.

Send update servicenow incident from your workflows.

Triggered by anything in the catalog. Free tier available. No credit card.