Skip to main content
Version: 8.8

ServiceNow Incident Handler

Use the ServiceNow Incident Handler connector to create, read, update, or delete incidents in ServiceNow directly from Camunda processes.

This connector works with the ServiceNow incident table, enabling automated IT service management and process-driven incident handling.

Supported operations

OperationDescriptionExample use case
CreateCreate a new incident in ServiceNow.Automatically log an incident when a process task fails.
ReadRetrieve details of an existing incident using its sys_id.Check the current status of an incident.
UpdateModify fields on an existing incident.Change incident priority or assignment group mid-process.
DeleteRemove an incident by its sys_id.Clean up test or temporary incidents after automation runs.

Configure the connector

Select ServiceNow Incident Handler from Camunda Modeler connector templates or download it from the Camunda Marketplace.

Required fields

FieldDescription
Instance nameName of your ServiceNow instance (e.g., your-instance-name).
OperationOne of Create, Read, Update, or Delete.
PayloadJSON data representing incident fields (for Create and Update operations).
Sys IDUnique identifier for Read, Update, or Delete operations.
AuthenticationServiceNow credentials (username and password).
tip

Store ServiceNow credentials securely as Camunda secrets and reference them in the connector configuration (e.g., {{secrets.snUser}} and {{secrets.snPwd}}).

ServiceNow Incident Handler example
Configuration of the Incident Handler connector in Camunda Modeler.

Example configurations

Create a new incident

FieldExample value
Instance nameyour-instance-name
OperationCreate
Payload{"short_description": "Create ServiceNow Incident (from Camunda)"}
Username{{secrets.snUser}}
Password{{secrets.snPwd}}

Update an existing incident's priority

FieldExample value
Instance nameyour-instance-name
OperationUpdate
Sys ID{{incidentSysId}}
Payload{"priority": "2"}
Username{{secrets.snUser}}
Password{{secrets.snPwd}}