Array command
The Array is a data structure, which can store a fixed-size sequential collection of elements. Every Array has an ID which is clearly identify that array and it has undeterminded number of string items.
Command example usage:
It's really practical when you would like to collect all of your information about the incoming new and old messages.
Parameters:
Parameter name | Value | Description | Mandatory |
ID | string value, e.g. sampleArray |
This ID will clearly identify the array and you can reach this array with this ID. | Yes |
OzML simple example:
The ID of this array is „sampleArray”. For example if you would like to reach that array to iterate it with ForEach loop, the source of the ForEach will be that ID. And the Array has two items: the Hello and the Welcome.
<?xml version="1.0"?> <Response> <arrayid="sampleArray"> <item>Item1</item> <item>Item2</item> </array> And you can iterate this array with the ForEach loop. <ForEach source'sampleArray'> <speak>$item</speak> </ForEach> </Response>
MoveFile command is used in OzML responses to these Api Extension Control notifications:
Var, Call, Hangup,
SendSMS, Play, Speak,
BlindTransfer
More information
- SQL command
- OzML Array command
- OzML BlindTransfer HTTP command to Ozeki Phone System
- OzML Call HTTP command to Ozeki Phone System
- OzML Delay HTTP command to Ozeki Phone System
- OzML DeleteFile Command
- OzML ForEach command
- OzML GoTo HTTP command to Ozeki Phone System
- OzML Hangup HTTP command to Ozeki Phone System
- OzML MoveFile command
- OzML Play HTTP command to Ozeki Phone System
- OzML ReceiveAlarmNotification
- OzML Record HTTP command to Ozeki Phone System
- OzML Reject HTTP command to Ozeki Phone System
- OzML SendAlarmNotification
- OzML SendEmail HTTP command to Ozeki Phone System
- OzML SendSMS HTTP command to Ozeki Phone System
- OzML Speak HTTP command to Ozeki Phone System
- OzML Userinput HTTP command to Ozeki Phone System
- OzML Var command