TMFTopicEventAPIUtilOOB - Scoped
-
- UpdatedFeb 1, 2024
- 16 minutes to read
- Washington DC
- API reference
The TMFTopicEventAPIUtilOOB script include contains functions to handle Event Notification Management Open API requests that are triggered by external trigger definitions to create, update, and delete events in the Event [em_event] table.
This script include contains the default implementation for the Event Notification Management Open API. If you want to change the default functionality of this API, you need to override all functions contained in
this script include in the TMFTopicEventAPIUtil
script include.
This script include runs in the sn_ind_tmf642
namespace.
For additional information on how to override these functions, see the Event Notification Management Open API Developer Guide.
For additional information on the Event Notification Management Open API, see Event Notification Management Open API.
TMFTopicEventAPIUtilOOB - getAlarmChangeEventSchema()
Returns the payload schema used when processing an alarm change event (ALARM_CHANGE_EVENT_SCHEMA).
This function is called as part of the AlarmChangeEvent
flow action call process. You can change the functionality of this function by overriding the default functionality in the
TMFTopicEventAPIUtil script include and the schema in the TMFAlarmAPIConstants script include.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
String | Schema defined in TMFAlarmAPIConstants.ALARM_CHANGE_EVENT_SCHEMA . |
Example
TMFTopicEventAPIUtilOOB - getAlarmCreateEventSchema()
Returns the payload schema used when processing an alarm create event (ALARM_CREATE_EVENT_SCHEMA).
This function is called as part of the AlarmCreateEvent
flow action call process. You can change the functionality of this function by overriding the default functionality in the
TMFTopicEventAPIUtil script include and the schema in the TMFAlarmAPIConstants script include.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
String | Schema defined in TMFAlarmAPIConstants.ALARM_CREATE_EVENT_SCHEMA |
Example
TMFTopicEventAPIUtilOOB - getAlarmDeleteEventSchema()
Returns the payload schema used when processing an alarm delete event (ALARM_DELETE_EVENT_SCHEMA).
This function is called as part of the AlarmDeleteEvent
flow action call process. You can change the functionality of this function by overriding the default functionality in the
TMFTopicEventAPIUtil script include and the schema in the TMFAlarmAPIConstants script include.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
String | Schema defined in TMFAlarmAPIConstants.ALARM_DELETE_EVENT_SCHEMA . |
Example
TMFTopicEventAPIUtilOOB - mapAlarmChangeObjectToEvent(alarmObject, GlideRecord newEventGr)
Maps the parameters in the passed change request payload to fields in the specified record in the Event [em_event] table.
You can customize field mappings to add data to the Event [em_event] table or change the default field mappings. To modify mappings, create functions with identical names and parameters in the
TMFTopicEventAPIUtil script include to override the mappings in the TMFTopicEventAPIUtilOOB script include. If you add fields to the mappings, these fields must also be added to the
associated schema (TMFAlarmAPIConstants.ALARM_CHANGE_EVENT_SCHEMA
).
This function is called as part of the transformAndPersistChangeEvent() function.
Name | Type | Description |
---|---|---|
alarmObject | Object | Payload should match what is defined in the schema defined in TMFAlarmAPIConstants.ALARM_CHANGE_EVENT_SCHEMA . |
newEventGr | GlideRecord | GlideRecord of the record to updated in the Event [em_event] table. |
Type | Description |
---|---|
None |
Example
TMFTopicEventAPIUtilOOB - mapCreateAlarmObjectToEvent(Object alarmObject, GlideRecord eventGr)
Maps the parameters in the passed create request payload to fields in the specified record in the Event [em_event] table.
You can customize field mappings to add data to the Event [em_event] table or change the default field mappings. To modify mappings, create functions with identical names and parameters in the
TMFTopicEventAPIUtil script include to override the mappings in the TMFTopicEventAPIUtilOOB script include. If you add fields to the mappings, these fields must also be added to the
associated schema (TMFAlarmAPIConstants.ALARM_CREATE_EVENT_SCHEMA
).
This function is called as part of the transformAndPersistAlarmCreateEvent() function.
Name | Type | Description |
---|---|---|
alarmObject | Object | Payload should match what is defined in the schema defined in TMFAlarmAPIConstants.ALARM_CREATE_EVENT_SCHEMA . |
eventGr | GlideRecord | GlideRecord of the record in the Event [em_event] table. |
Type | Description |
---|---|
None |
Example
TMFTopicEventAPIUtilOOB - mapDeleteAlarmObjectToEvent(Object additionalInfoObj, GlideRecord newEventGr)
Maps the parameters in the passed delete request payload to fields in the specified record in the Event [em_event] table.
You can customize field mappings to add data to the Event [em_event] table or change the default field mappings. To modify mappings, create functions with identical names and parameters in the
TMFTopicEventAPIUtil script include to override the mappings in the TMFTopicEventAPIUtilOOB script include. If you add fields to the mappings, these fields must also be added to the
associated schema (TMFAlarmAPIConstants.ALARM_DELETE_EVENT_SCHEMA
).
This function is called as part of the transformAndPersistDeleteEvent() function.
Name | Type | Description |
---|---|---|
alarmObject | Object | Payload should match what is defined in the schema defined in TMFAlarmAPIConstants.ALARM_DELETE_EVENT_SCHEMA . |
newEventGr | GlideRecord | GlideRecord of the record to use to map the fields in the payload to those in the Event [em_event] table. |
Type | Description |
---|---|
None |
Example
TMFTopicEventAPIUtilOOB - prepareEventAlarmRecordResponse(String msgKey Object alarmObject, Object responseObject)
Generates the response object after event creation or update, including the clearing of an event.
This function is called by the processAlarmCreateEvent(), processChangeAlarm(), and processDeleteAlarmEvent() functions. You can change the functionality of this function by overriding the default functionality in the TMFTopicEventAPIUtil script include.
Example
TMFTopicEventAPIUtilOOB - processAlarmChangeEvent(Object changeAlarmPayload)
Starts the process of updating a record in the Event [em_event] table when the eventType is set to AlarmChangeNotification
.
This function is called by the AlarmChangeEvent
flow action. You can change the functionality of this function by overriding the default functionality in the TMFTopicEventAPIUtil script
include.
Name | Type | Description |
---|---|---|
changeAlarmPayload | Object | Event change payload to process. The payload should match the schema defined in TMFAlarmAPIConstants.ALARM_CHANGE_EVENT_SCHEMA . |
Example
TMFTopicEventAPIUtilOOB - processAlarmCreateEvent(Object eventAlarmObject)
Starts the process of creating a record in the Event [em_event] table when the eventType is set to AlarmCreateNotification
.
This function is called by the AlarmCreateEvent
flow action. You can change the functionality of this function by overriding the default functionality in the TMFTopicEventAPIUtil script
include.
Name | Type | Description |
---|---|---|
eventAlarmObject | Object | Event create payload to process. The payload should match the schema defined in TMFAlarmAPIConstants.ALARM_CREATE_EVENT_SCHEMA . |
Example
TMFTopicEventAPIUtilOOB - processDeleteAlarmEvent(Object deleteAlarmPayload)
Starts the process of clearing the alarm event in the Event [em_event] table when the eventType is set to AlarmDeleteNotification
.
This function clears the state field and closes the event alarm. It also updates any parameters in the passed payload.
This function is called by the AlarmDeleteEvent
flow action. You can change the functionality of this function by overriding the default functionality in the TMFTopicEventAPIUtil script
include.
Name | Type | Description |
---|---|---|
deleteAlarmPayload | Object | Event delete payload to process. The payload should match the schema defined in TMFAlarmAPIConstants.ALARM_DELETE_EVENT_SCHEMA . |
Example
TMFTopicEventAPIUtilOOB - transformAndPersistChangeEvent(Object additionalInfoObj, GlideRecord existingGr)
Transforms the passed in change event payload using the associated change event mapping values and stores the updated information in the passed GlideRecord within the Event [em_event] table.
This function is called by the processAlarmChangeEvent() function as part of the flow action. You can change the functionality of this function by overriding the default functionality in the TMFTopicEventAPIUtil script include.
Name | Type | Description |
---|---|---|
additionalInfoObj | Object | Payload to use to update the fields in the record specified in the existingGr parameter. The payload should match the schema defined in
TMFAlarmAPIConstants.ALARM_CHANGE_EVENT_SCHEMA . |
existingGr | GlideRecord | GlideRecord of the event record in the Event [em_event] table to update. |
Type | Description |
---|---|
String | Unique ID (Message key) of the event. |
Example
This function is only called by the AlarmChangeEvent
flow action, so no code example is provided.
TMFTopicEventAPIUtilOOB - transformAndPersistAlarmCreateEvent(Object alarmObject)
Transforms the passed in create event payload using the associated create event mapping values and stores the information in Event [em_event] table.
This function is called by the processAlarmCreateEvent() function as part of the flow action. You can change the functionality of this function by overriding the default functionality in the TMFTopicEventAPIUtil script include.
Name | Type | Description |
---|---|---|
alarmObject | Object | Payload to use to create a record in the Event [em_event] table. The payload should match the schema defined in TMFAlarmAPIConstants.ALARM_CREATE_EVENT_SCHEMA . |
Type | Description |
---|---|
String | Unique ID (Message key) of the event. |
Example
This function is only called by the AlarmCreateEvent
flow action, so no code example is provided.
TMFTopicEventAPIUtilOOB - transformAndPersistDeleteEvent(Object additionalInfoObj GlideRecord existingGr)
Transforms the passed in delete (clear) event payload using the associated delete event mapping values and stores the updated information in the passed GlideRecord within the Event [em_event] table.
This function is called by the >processAlarmDeleteEvent() function as part of the flow action. You can change the functionality of this function by overriding the default functionality in the TMFTopicEventAPIUtil script include.
Name | Type | Description |
---|---|---|
additionalInfoObj | Object | Payload to use to update the clear event fields in the record specified in the existingGr parameter. The payload should match the schema defined in
TMFAlarmAPIConstants.ALARM_DELETE_EVENT_SCHEMA . |
existingGr | GlideRecord | GlideRecord of the event record in the Event [em_event] table for which to clear the alarm. |
Type | Description |
---|---|
String | Unique ID (Message key) of the event. |
Example
This function is only called by the AlarmDeleteEvent
flow action, so no code example is provided.
TMFTopicEventAPIUtilOOB - validateSubscription(Object eventAlarmObject, Object responseObject)
Performs validation on the subscription.
This validation includes checking if the callback URL used to make the event notification and the eventType in the payload are registered.
This function is called by the processAlarmCreateEvent(), processChangeAlarm(), and processDeleteAlarmEvent() functions. You can change the functionality of this function by overriding the default functionality in the TMFTopicEventAPIUtil script include.
Example
This function is only called by the AlarmCHANGEEvent
flow action, so no code example is provided.
TMFTopicEventAPIUtilOOB - verifyAlarmChangeEventPayload(Object changeAlarmPayload, Object responseObject )
Provides the ability to define additional verification of the passed in change event payload.
This function is called by the processAlarmChangeEvent() function as part of the flow action. Currently there is no additional payload verification provided for the change payload. You can add functionality for this function by overriding the default functionality in the TMFTopicEventAPIUtil script include.
Example
TMFTopicEventAPIUtilOOB - verifyAlarmCreateEventPayload(Object alarmObject, Object responseObject)
Provides the ability to define additional verification of the passed in create event payload.
This function is called by the processAlarmCreateEvent() function as part of the flow action. Currently there is no additional payload verification provided for the create payload. You can add functionality for this function by overriding the default functionality in the TMFTopicEventAPIUtil script include.
Example
TMFTopicEventAPIUtilOOB - verifyDeleteEventPayload(Object deleteAlarmPayload, Object responseObject)
Provides the ability to define additional verification of the passed in delete event payload.
This function is called by the processDeleteAlarmEvent() function as part of the flow action. Currently there is no additional payload verification provided for the delete payload. You can add functionality for this function by overriding the default functionality in the TMFTopicEventAPIUtil script include.
Example
On this page
- TMFTopicEventAPIUtilOOB - getAlarmChangeEventSchema()
- TMFTopicEventAPIUtilOOB - getAlarmCreateEventSchema()
- TMFTopicEventAPIUtilOOB - getAlarmDeleteEventSchema()
- TMFTopicEventAPIUtilOOB - mapAlarmChangeObjectToEvent(alarmObject, GlideRecord newEventGr)
- TMFTopicEventAPIUtilOOB - mapCreateAlarmObjectToEvent(Object alarmObject, GlideRecord eventGr)
- TMFTopicEventAPIUtilOOB - mapDeleteAlarmObjectToEvent(Object additionalInfoObj, GlideRecord newEventGr)
- TMFTopicEventAPIUtilOOB - prepareEventAlarmRecordResponse(String msgKey Object alarmObject, Object responseObject)
- TMFTopicEventAPIUtilOOB - processAlarmChangeEvent(Object changeAlarmPayload)
- TMFTopicEventAPIUtilOOB - processAlarmCreateEvent(Object eventAlarmObject)
- TMFTopicEventAPIUtilOOB - processDeleteAlarmEvent(Object deleteAlarmPayload)
- TMFTopicEventAPIUtilOOB - transformAndPersistChangeEvent(Object additionalInfoObj, GlideRecord existingGr)
- TMFTopicEventAPIUtilOOB - transformAndPersistAlarmCreateEvent(Object alarmObject)
- TMFTopicEventAPIUtilOOB - transformAndPersistDeleteEvent(Object additionalInfoObj GlideRecord existingGr)
- TMFTopicEventAPIUtilOOB - validateSubscription(Object eventAlarmObject, Object responseObject)
- TMFTopicEventAPIUtilOOB - verifyAlarmChangeEventPayload(Object changeAlarmPayload, Object responseObject )
- TMFTopicEventAPIUtilOOB - verifyAlarmCreateEventPayload(Object alarmObject, Object responseObject)
- TMFTopicEventAPIUtilOOB - verifyDeleteEventPayload(Object deleteAlarmPayload, Object responseObject)