NotifyNow - initiateConferenceCall(String[] conferenceCallParticipants, String conferenceCallTitle)

  • Release version: Washingtondc
  • Updated February 1, 2024
  • 1 minute to read
  • Initiate a new conference call.

    Table 1. Parameters
    Name Type Description
    conferenceCallParticipants String One or more users, conference call participants, identified by the sys_ids from the sys_user table or E.164-compliant phone numbers.
    conferenceCallTitle String Title of the conference call. This parameter has a maximum length of 40 characters.
    Table 2. Returns
    Type Description
    GlideRecord The conference call record, or null if there was an error.

    This initiates a conference call with E.164-compliant phone numbers for participants, without the optional source record parameter and and does not send any conference call details via SMS or email.

    var participants = ['+31205655548', '+31205655552', '+31652825393'];
    // set up conference call
    var nn = new SNC.NotifyNow();
    var conferenceCall = nn.initiateConferenceCall(participants, "testing12");
    gs.log('started conference call: ' + conferenceCall.getUniqueValue());