Delinks all stakeholders from the event, except for the ones specified in the recipientTargetNames list.
@event::delinkAllExcept(list recipientTargetNames)
(list) recipientTargetNames: list of recipients to be excepted from the delink action.
(Boolean) true for success; false for failure
This example illustrates how to delink the event recipients to this event resolution business process, except for the recipients in the $response.person_target list variable.
IF (EXISTS($response.person_target))
@event::delinkAllExcept($response.person_target)
ELSE
@event::delinkAll()
ENDIF