ServiceNow · AsyncAPI Specification

ServiceNow Events and Notifications

Version Yokohama

ServiceNow supports outbound event-driven integrations through business rules, event management, and outbound REST messages. When records are created, updated, or deleted in ServiceNow tables, business rules can trigger outbound HTTP POST notifications to external webhook receivers. This specification documents the event payloads and notification patterns used by ServiceNow's outbound integration capabilities for incident, change, and problem management workflows.

View Spec View on GitHub AutomationCloud ServicesDigital WorkflowsEnterprise PlatformIT Service ManagementITSMProcessesT1Workflow AutomationWorkflowsAsyncAPIWebhooksEvents

Channels

/webhook/incident
publish receiveIncidentEvent
Receive an incident event notification
Receives notifications when incident records are created, updated, or resolved in ServiceNow. Triggered by business rules configured on the incident table.
/webhook/change
publish receiveChangeEvent
Receive a change request event notification
Receives notifications when change request records are created, approved, implemented, or closed. Triggered by business rules or workflow activities on the change_request table.
/webhook/event-management
publish receiveEventManagementAlert
Receive an event management alert
Receives event management alerts from ServiceNow IT Operations Management. Events are published to external monitoring systems when alerts are triggered, acknowledged, or resolved.

Messages

IncidentCreated
Incident Created
Notification sent when a new incident is created.
IncidentUpdated
Incident Updated
Notification sent when an incident is updated.
IncidentResolved
Incident Resolved
Notification sent when an incident is resolved or closed.
ChangeCreated
Change Request Created
Notification sent when a change request is created.
ChangeUpdated
Change Request Updated
Notification sent when a change request is approved, implemented, or closed.
EventManagementAlert
Event Management Alert
Alert notification from ServiceNow Event Management.

Servers

https
webhookReceiver {webhookUrl}
Your webhook receiver endpoint. ServiceNow sends POST requests to this URL when configured business rules or event actions are triggered.