Vm_VmbConfig_Get
Retrieves a property value for a particular voicemail box.
Syntax
sCurrentValue = object.Vm_VmbConfig_Get(sVmbId, sTag)
Part | Description |
object | VoiceGuide object |
sVmbId | The ID of the Voicemail box who's property is to be retrieved. |
sTag | The name of the property to be retrieved. |
sCurrentValue | The current value of the property. |
Notes
Returns the information stored for the specified property. The actual information returned will be the contents in the VmBoxList.xml file between <sTag> and </sTag> for the selected Voicemail Box.
Example
set vg =
CreateObject("vgServices.CommandLink")
sPin = vg.Vm_VmbConfig_Get("0001" "Pin")
vg.Run_ResultReturn $RV_LINEID, "[ThisUserPin]{" & sPin & "}"
set vg = Nothing