NotifyNow - 음소거(GlideRecord 참가자)

  • 릴리스 버전: Washingtondc
  • 업데이트 날짜 2024년 02월 01일
  • 읽기1분
  • 전화 회의 중 참가자를 음소거합니다.

    표 1. 매개변수
    이름 유형 설명
    참가자 GlideRecord 음소거할 컨퍼런스 회의 참가자입니다.
    표 2. 반환
    유형 설명
    부울 참가자가 음소거 된 경우 True, 그렇지 않은 경우 False입니다.
    var participantId = "<participant sys_id>";
    var participant = new GlideRecord('notifynow_participant');
    participant.get(participantId);
    if (participant.isValid()) {
         // mute participant
         result = new SNC.NotifyNow().mute(participant);
         gs.log('participant muted: ' + result);
    }