Delink the recipients from this notification.
This method removes the recipients (Groups, Teams, or Users only; Devices are not processed) from this notification by doing the following:
1) Terminates any pending live notifications.
2) Disables normal handler script access for this event/notification.
3) Disables inbound Device access to the event. (e.g., phone call in or web user interface access).
@notification::delink(list recipientTargetNames)
(List) recipientTargetNames: list of recipients to delink (Groups, Teams, or Users only; Devices are not processed)
(Boolean) true for success; false for failure
Typically, the delink method is used in a handler script as illustrated in the following example:
# Handler Script
If ($HandlerEvent.event == "confirmed")
@Notification::delink("CompanyAdmin")
endif