Jump to content
  • PBXUser

    31 pages in this category

    1. PBXUser.IsConferenceUser

      VBScript   This property returns if the current script user is a special user (typically the Conference user) used by the ConferenceManager serivce.   PBXUser.IsConferenceUser     This property returns a boolean value.   This property is used by SwyxWare's PostProcessing callrouting.    
      • 164 views
    2. PBXUser.VoicemailRecordingTimeout

      VBScript   This property gets or sets the the maximum number of seconds for standard voicemail recording of the script user.   PBXUser.VoicemailRecordingTimeout     This property takes or returns an integer value.   Valid values are 3 .. 600.   The following properties are also available to access the standard voicemail configuration of the script user:   PBXUser.VoicemailEMailAddress PBXUser.VoicemailRecording PBXUser.V
      • 143 views
    3. PBXUser.VoicemailRecording

      VBScript   This property sets or gets if a message should be recorded after welcome announcement.   PBXUser.VoicemailRecording     This property takes or returns a boolean value.   If set to True a message will be recorded after welcome announcement has been played. If set to False no message will be recorded.   The following properties are also available to access the standard voicemail configuration of the script user:   PBXUse
      • 161 views
    4. PBXUser.VoicemailEMailAddress

      VBScript   This property gets or sets the the target address for standard voicemail recording of the script user.   PBXUser.VoicemailEMailAddress     This property takes or returns as string value.   The following properties are also available to access the standard voicemail configuration of the script user:   PBXUser.VoicemailRecording PBXUser.VoicemailRecordingTimeout PBXUser.VoicemailWelcomeMessage    
      • 213 views
    5. PBXUser.UploadFile

      VBScript   This function uploads a given file into the database, more precisely into the USER scope of the current script user.   Dim nResult Dim sFilePath, nFileCategory, sFileName, sDescription, bOverWrite, bCompress sFilePath = "C:\Announcements\" nFileCategory = PBXFileFileCategoryAnnouncements sFileName = "MyAnnouncement.wav" sDescription = "my regular announcement" bOverWrite = True bCompress = False nResult = PBXUser.UploadFile( _ sFilePath, _ nFil
      • 290 views
    6. PBXUser.Pin

      VBScript   → Lua   This property returns or sets the current script user's phone pin.   PBXUser.Pin     This property is a string value.   This property must not contain any characters other then digits from 0-9. The maximum length of a Pin is limited to 16 digits.   This property is used by the GSE build-in function PIN(). When following this link you will find some important hints regarding the name "pin".    
      • 153 views
    7. PBXUser.ParallelCallNumbers

      VBScript   → Lua   This property gets or sets the script users parallel call numbers.   PBXUser.ParallelCallNumbers     This property takes or returns a string value.   When enabling the script users' parallel call feature with the PBXUser.EnableParallelCall property, the PBXUser.ParallelCallNumbers define a semicolon separated list of all numbers that should ring in parallel to the current script users extension.   PBXUser.EnableParallelCall
      • 193 views
    8. PBXUser.NumberOfNewVoicemails

      VBScript   → Lua   This property returns the current number of received new voicemails of the script user.   PBXUser.NumberOfNewVoicemails     This property is an integer value.   This property allows read / write access.   By incrementing this value you can enable the new voicemail indication of the current script user. By setting it to 0 you can disable it.   ' switch voicemail indication on PBXUser.NumberOfNewVoicemails = PBXUser.
      • 174 views
    9. PBXUser.Name

      VBScript   → Lua   This property returns the name of the current script user.   PBXUser.Name     This property returns a string value.   This property allows read access only.   Beside the user name there is also the PBXUser.UserID used to identify a certain user.   If you need to resolve the name or the user id of any SwyxWare user (not only the current script user) you can use the PBXConfig.GetUserByAddress function.  
      • 434 views
    10. PBXUser.MobilePhoneNumber

      VBScript Is obsolete since SwyxWare 2015   With SwyxWare 2015 a new generation of Swyx Mobile Apps have been introduced. These new generation apps are SIP clients which login as additional devices to a user and ring in parallel mode.   The old mobile integration (up until SwyxWare 2013) worked differently.   Current Swyx Mobile Apps in the store do not use the old mobile integration, which makes this property obsolete.    
      • 160 views
    11. PBXUser.IsOutOfOffice

      VBScript   → Lua   This function returns true if the current script user has an appointment in his Outlook/Exchange calendar stating him to be "out of office".   PBXUser.IsOutOfOffice     This function returns a boolean value.   Please refer to the SwyxWare Administrator manual (chapter 5.3.3, Installation for Calendar-Based Call Management) for information on how to setup calendar based call routing correctly.   Beside the "out of office" f
      • 180 views
    12. PBXUser.IsOutlookBusy

      VBScript   → Lua   This function returns true if the current script user has an appointment in his Outlook/Exchange calendar stating him to be "busy".   PBXUser.IsOutlookBusy     This function returns a boolean value.   Please refer to the SwyxWare Administrator manual (chapter 5.3.3, Installation for Calendar-Based Call Management) for information on how to setup calendar based call routing correctly.   Beside the "busy" flag of an appointm
      • 241 views
    13. PBXUser.IsLoggedIn

      VBScript   → Lua   This function returns True if the script user is currently logged in into his SwyxWare account.   If PBXUser.IsLoggedIn Then ' do something End If     This function returns a boolean value.   Please note, that the SwyxServer caches the busy state of a user. So once you have called this function the first time in the script it will always return the same value if being called again.   If you need to get current status of
      • 178 views
    14. PBXUser.Away

      VBScript   → Lua   SwxWare 2011   This property takes or returns the current away status of the script user.   ' Getting the script users current away state Dim bAway bAway = PBXUser.Away ' Setting the script users away state PBXUser.Away = True     This property takes or returns a boolean value.   This property is identical to the GSE build-in property IpPbx.Away.    
      • 237 views
    15. PBXUser.IsBusy

      VBScript   → Lua   This function returns True if the script user is currently busy.   If PBXUser.IsBusy Then ' do something End If     This function returns a boolean value.   Please note, that the SwyxServer caches the busy state of a user. So once you have called this function the first time in the script it will always return the same value if being called again.   If you need to get current status of any user within the SwyxWare, you c
      • 177 views
    16. PBXUser.FreeStatusText

      VBScript   → Lua   SwxWare 2011   This property takes or returns the current status text of the script user.   ' Getting the script users status text Dim sStatus sStatus = PBXUser.FreeStatusText ' Setting the script users status text PBXUser.FreeStatusText = "I am out for lunch"     This property takes or returns a string value.   It is identical to the GSE build-in property IpPbx.UserFreeStatusText.   The status text of a user is getting
      • 178 views
    17. PBXUser.EnableParallelCall

      VBScript   → Lua   This property sets the script users' parallel call feature or returns its current enable status.   ' get the status of the script users parallel call feature Dim bParallel bParallel = PBXUser.EnableParallelCall ' enable the script users parallel call feature PBXUser.EnableParallelCall = True     This property takes or returns a boolean value.   When enabling the script users' parallel call feature, you should also configure the PBX
      • 180 views
    18. PBXUser.EnableMobileExtensions

      VBScript Is obsolete since SwyxWare 2015   With SwyxWare 2015 a new generation of Swyx Mobile Apps have been introduced. These new generation apps are SIP clients which login as additional devices to a user and ring in parallel mode.   The old mobile integration (up until SwyxWare 2013) worked differently.   Current Swyx Mobile Apps in the store do not use the old mobile integration, which makes this property obsolete.    
      • 143 views
    19. PBXUser.DoNotDisturb

      VBScript   → Lua   SwxWare 2011   This property takes or returns the current do not disturb status of the script user.   ' Getting the script users current do not disturb state Dim bDoNotDisturb bDoNotDisturb = PBXUser.DoNotDisturb ' Setting the script users do not disturb state PBXUser.DoNotDisturb = True     This property takes or returns a boolean value.   This property is identical to the GSE build-in property IpPbx.DoNotDisturb.    
      • 184 views
    20. PBXUser.DelayedRedirectTimeout

      VBScript   → Lua   This property returns or sets the timeout of the user's (for whom the current script is running) delayed redirection.   If PBXUser.DelayedRedirectTimeout = 30 Then '... End If ' configure delayed redirection timeout PBXUser.DelayedRedirectTimeout = 30     This property takes or returns an integer value.   Please note, that you need to enable the delayed redirection using the PBXUser.DelayedRedirect function.   Additiona
      • 158 views
    21. PBXUser.DelayedRedirectNumber

      VBScript   → Lua   This property returns or sets the state of the user's (for whom the current script is running) delayed redirection number setting, meaning the target of the redirection   If PBXUser.DelayedRedirectNumber = "100" Then '... End If ' configure delayed redirection target PBXUser.DelayedRedirectNumber = "200"     This function takes or returns a string value.   Please note, that you need to enable the delayed redirection using the PB
      • 210 views
    22. PBXUser.DelayedRedirect

      VBScript   → Lua   This property returns or sets the state of the user's (for whom the current script is running) delayed redirection setting.   If PBXUser.DelayedRedirect Then '... End If ' enable delayed redirection PBXUser.DelayedRedirect = True ' disable delayed redirection PBXUser.DelayedRedirect = False     This property takes or returns a boolean value.   Please note, that you need to set the number to which should be redirected using the
      • 182 views
    23. PBXUser.DataFolder

      VBScript Is obsolete since SwyxWare v6.00    
      • 174 views
    24. PBXUser.BusyRedirectNumber

      VBScript   → Lua   This property returns or sets the state of the user's (for whom the current script is running) on busy redirection number setting, meaning the target of the redirection.   If PBXUser.BusyRedirectNumber = "100" Then '... End If ' configure on busy redirection target PBXUser.BusyRedirectNumber = "200"     This property takes or returns a string value.   Please note, that you need to enable the on busy redirection using the PBXUser
      • 174 views
    25. PBXUser.BusyRedirect

      VBScript   → Lua   This property returns or sets the state of the script users' (for whom the current script is running) own busy redirection setting.   If PBXUser.BusyRedirect Then '... End If ' enable on busy redirection PBXUser.BusyRedirect = True ' disable on busy redirection PBXUser.BusyRedirect = False     This property takes or returns a boolean value.   Please note, that you need to set the number to which should be redirected using the P
      • 196 views
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and have taken note of our Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.