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()) {
         // kick participant
         result = new SNC.NotifyNow().kick(participant);
         gs.log('participant kicked: ' + result);
    }