Document toolboxDocument toolbox

Job Cancel Push Notifications

On This Page:

Related Pages:

Background

This Push Notification can be used to inform an external system whenever a job is cancelled in ServiceOptimizer.

Triggers

When configured (see below), a Job Cancel push notification is sent whenever a job is cancelled in ServiceOptimizer via the following APIs:

Configuring

Job Cancel push notifications can be enabled/disabled by setting the flag value shown below in the sp213_scheduler_parameters database table for the relevant FRU (or, enabled/disabled globally by setting the value in the sp083_system_parameters database table). 

(warning) Remember that before enabling Job Cancel push notifications, details of where to send the notifications also needs to be set up. Please see the Push Notifications page for details.

Column NameTypeDescription
notification_job_cancel
boolean

Defines if Job Cancel push notifications will be sent or not.

In addition, when Job Cancel push notifications are enabled, the following flag value must also be set in the sp083_system_parameters database table.

Column NameTypeDescriptionMin. ValueMax. ValueDefault Value

job_cancel_retention_window

int

Defines the number of days that cancellation data will be retained in the system before being purged.

222

Object Format

The Job Cancel push notification will send a JSON object to the configured API with the following format:

{
	"Type": "-1",
	"WorkItemType": "1",
	"WorkItem": {
		"Id": ""
		"WorkStatus": ""
	}
}

Object Properties

The Job Cancel push notification's JSON object has the following properties.

PropertyTypeRequired?Description
TypestringYes

The type of notification being sent.

For a Job Cancel push notification, this value will always be -1 (minus one), indicating the notification represents a cancellation action.

WorkItemTypestringYes

The type of work the notification is about.

For a Job Cancel push notification, this value will always be 1 (one), indicating the notification is about a job.

WorkItemobjectYes

IdstringYesServiceOptimizer's unique ID for the job that the Job Cancel push notification is about.

WorkStatusstringYesA DisStatus code, representing the status of the job at the time of the Job Cancel push notification.