NotifyNow - umute(GlideRecord participant)

  • Release version: Washingtondc
  • Updated February 1, 2024
  • 1 minute to read
  • Unmutes a participant on a conference call.

    Table 1. Parameters
    Name Type Description
    participant GlideRecord The muted conference call participant to unmute.
    Table 2. Returns
    Type Description
    Boolean True if the participant was unmuted, otherwise false.
    var participantId = "<participant sys_id>";
    var participant = new GlideRecord('notifynow_participant');
    participant.get(participantId);
    if (participant.isValid()) {
         // unmute participant
         result = new SNC.NotifyNow().unmute(participant);
         gs.log('participant unmuted: ' + result);
    }