@event::delinkAllExcept

Delinks all stakeholders from the event, except for the ones specified in the recipientTargetNames list.

Syntax:

@event::delinkAllExcept(list recipientTargetNames)

Parameters:

(list) recipientTargetNames: list of recipients to be excepted from the delink action.

Returns:

(Boolean) true for success; false for failure

Example:

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