Require: IP-Symcon >= 5.2
boolean VoIP_SetData (int $InstanceID, int $ConnectionID, string $Data)
InstanceID | ID of the device to be switched |
ConnectionID | ID of the connection to be switched |
Data | Data for which connection is to be set |
If the command succeeds, it returns TRUE, otherwise FALSE.
Sets the data Data of the connection with the ID ConnectionID on the VoIP instance with the ID InstanceID.
// Sets the content of the data of the connection with ID 3 to "Hello World"
VoIP_SetData(12345, 3, "Hello World");