@event::delink

Allows a User or Group across all related notifications for this event process to be delinked.

The recipients listed in the parameter are used as parameters to perform a @notification::delink(recipients) for every notification created by this event process.

Syntax:

@event::delink(list recipientTargetNames)

Parameters:

(List) recipientTargetNames: This is a list of target names for Users or Groups (not Devices) that should be delinked.

Returns:

(Boolean) true for success; false for failure

Example:

This example illustrates how to delink the event recipients to this event resolution business process.

#delink all the recipients that have been involved by

#any notification associated to this event process

@event::delink("CompanyAdmin")

$recipients = "Jim"

$recipients::add("Bob")

@event::delink($recipients)