notificationDto Data Type

The Class NotificationDto.

Namespace
(Default)
Abstract Type
Subtypes
emailNotificationDto, jobTriggerDto, scriptNotificationDto, webHookDto
Properties
name data type type namespace min/max occurs constraints description
active boolean element 0/1   Is Notification active. A negative of Disabled. Deprecated in 5.0.1. Use Disabled field instead.
classNameFilter string element 1/1 required The class name filter.
counterTemplate string element 0/1   The counter template.
elFilter string element 0/1   The el filter.
eventTypeFilter notificationEventTypeEnum element 1/1 required Valid values: CREATED, UPDATED, REMOVED, TERMINATED, DISABLED, PROCESSED, REJECTED, REJECTED_CDR, LOGGED_IN, INBOUND_REQ, ENABLED
priority int element 1/1   The priority.
runAsync boolean element 0/1   Whether this notification will be run in async mode.
scriptInstanceCode string element 0/1   The script instance code.
scriptParams (custom) element 0/1   The script params.
Properties inherited from enableBusinessDto
code string attribute 1/1   The code
description string attribute 0/1   The description
id long attribute 0/1   The id.
auditable auditableDto element 0/1    
auditableField auditableFieldDto element 0/unbounded    
disabled boolean element 0/1   Is entity disabled. Value is ignored in Update action - use enable/disable API instead.
updatedCode string element 0/1   The updated code.

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
<Notification code="..." description="..." id="...">
  <classNameFilter>...</classNameFilter>
  <eventTypeFilter>...</eventTypeFilter>
  <elFilter>...</elFilter>
  <scriptInstanceCode>...</scriptInstanceCode>
  <scriptParams>...</scriptParams>
  <counterTemplate>...</counterTemplate>
  <priority>...</priority>
  <runAsync>...</runAsync>
  <disabled>...</disabled>
  <auditable created="..." creator="..." updated="..." updater="..."/>
  <auditableFields>
    <auditableField actor="..." changeOrigin="..." code="..." created="..." currentState="..." description="..." entityClass="..." fieldName="..." id="..." originName="..." previousState="...">
      <auditable/>
      <auditableFields>
        <auditableField/>
      </auditableFields>
      <updatedCode>...</updatedCode>
    </auditableField>
  </auditableFields>
  <updatedCode>...</updatedCode>
</Notification>