Skip to main content
Version: 0.1.0

NotificationConditionProvider

Conditions can be provided as either a singular condition or a group of combined conditions. When a notification is triggered by Zeet, a NotificationConditionProvider, if configured, will be evaluated against the notification's attributes. If the NotificationConditionProvider is satisfied (i.e. evaluates to 'true'), then the notification will be forwarded to the target integration.

union NotificationConditionProvider = NotificationCondition | NotificationConditionGroup

Possible types

NotificationConditionProvider.NotificationCondition object

A notification condition represents a test of some attribute against a target value. A NotificationCondition is evaluated to a true/false value, and can be combined via NotificationConditionGroup.

For example: {operator: EQUALS, key: PROJECT_ID, value: "abc-123"} will test a given notification for event.project_id == "abc-123"

NotificationConditionProvider.NotificationConditionGroup object

Represents the logical combination of one or more conditions

Member Of

NotificationConditionGroup object ● NotificationIntegrationSettings object