-
Server Script API (VBScript)
Server Script API (VBScript)
Introduction
PBXCall
- PBXCall.Activate
- PBXCall.Alerting
- PBXCall.CalledPartyNumber
- PBXCall.CalledPartyNumberCanonical
- PBXCall.CallId
- PBXCall.CallingDeviceName
- PBXCall.CallingDeviceType
- PBXCall.CallingEntityId
- PBXCall.CallingEntityType
- PBXCall.CallingPartyName
- PBXCall.CallingPartyNumber
- PBXCall.CallProceeding
- PBXCall.Charges
- PBXCall.CLIMode
- PBXCall.ConnectedName
- PBXCall.ConnectedNumber
- PBXCall.DialedNumber
- PBXCall.Disconnect
- PBXCall.FaxToneDetected
- PBXCall.Hold
- PBXCall.IsInternal
- PBXCall.IsOnHold
- PBXCall.IsOriginatorDisconnected
- PBXCall.LastRecordedMessage
- PBXCall.LastRecordedMessageLength
- PBXCall.PhoneCallListEntry
- PBXCall.PlayMessage
- PBXCall.PostDialingDigits
- PBXCall.RecordMessage
- PBXCall.SecondaryCallingPartyNumber
- PBXCall.SendEMail
- PBXCall.SkipAlerting
- PBXCall.WaitForDisconnect
PBXUser
- PBXUser.Away
- PBXUser.BusyRedirect
- PBXUser.BusyRedirectNumber
- PBXUser.DataFolder
- PBXUser.DelayedRedirect
- PBXUser.DelayedRedirectNumber
- PBXUser.DelayedRedirectTimeout
- PBXUser.DoNotDisturb
- PBXUser.EnableMobileExtensions
- PBXUser.EnableParallelCall
- PBXUser.FreeStatusText
- PBXUser.IsBusy
- PBXUser.IsConferenceUser
- PBXUser.IsLoggedIn
- PBXUser.IsOutlookBusy
- PBXUser.IsOutOfOffice
- PBXUser.MobileIdentificationNumbers
- PBXUser.MobilePhoneNumber
- PBXUser.Name
- PBXUser.Now
- PBXUser.NumberOfNewVoicemails
- PBXUser.ParallelCallNumbers
- PBXUser.Pin
- PBXUser.UnconditionalRedirect
- PBXUser.UnconditionalRedirectNumber
- PBXUser.UploadFile
- PBXUser.UserID
- PBXUser.VoicemailEMailAddress
- PBXUser.VoicemailRecording
- PBXUser.VoicemailRecordingTimeout
- PBXUser.VoicemailWelcomeMessage
PBXGroup
PBXScript
- PBXScript.CompareNumbers
- PBXScript.ConvertToCanonical
- PBXScript.CreateObject
- PBXScript.DataFolder
- PBXScript.EndScript
- PBXScript.GetAudioFileLength
- PBXScript.InstallLanguageID
- PBXScript.IsUserOrGroupBusy
- PBXScript.IsUserOrGroupBusyEx
- PBXScript.Licenses
- PBXScript.Now
- PBXScript.OutputTrace
- PBXScript.OutputTraceEx
- PBXScript.PreviousScripts
- PBXScript.SendEMail
- PBXScript.Sleep
- PBXScript.SystemLanguageID
- PBXScript.Type
- PBXScript.WebRequest
PBXConfig
-
3 pages in this category
-
Introduction
Last Updated:VBScript → Lua The following interfaces are private COM interfaces, i.e. they are only available witihn an call routing script. They dont' need to get instantiated. PBXCall This interface covers properties and methods being related to the current call. PBXUser This interface covers properties and methods being related to the user the current script is running for. If the current script runs in a group context (i.e. this is a call routing of a - 4,231 views
-
User or Group context
Last Updated:VBScript → Lua SwxWare v13.27 A call routing script can run on a user or a group context. Differ context If the script is running in a user context the PBXUser interface is available while the PBXGroup interface is not. If it is running on a group context the PBXGroup interface is available while the PBXUser interface is not. If your script is used in both contexts (user and group) and needs to make use of PBXUser/PBXGroup functionality, - 523 views
-
Server Script API Return Values
Last Updated:VBScript → Lua The following names or values can be used directly within the call routing script, e.g. Dim nRetVal nRetVal = PBXCall.Hold ("*hold*") If (nRetVal = PBXSuccess) Then ... End If Additionally it is possible to receive the return value / cause from the latest connect to attempt by using the GSE build in function LastCause(). Result Name Value Remark PBXSuccess 0 PBXFailure - 665 views
-