Get channel configuration

Verified
Added by iNTERFACEWARE

Use iguana.channelConfig{} to get configuration information for a channel, you can use either guid or channel name to specify the channel

Source Code
   -- use a GUID to get channel config
   local Config = iguana.channelConfig{guid=iguana.channelGuid()}
   Config = xml.parse{data=Config}
   
   -- use channel name
   local Config = iguana.channelConfig{name=iguana.channelName()}
Description
Use iguana.channelConfig{} to get configuration information for a channel, you can use either guid or channel name to specify the channel
Usage Details

Use iguana.channelConfig() to get configuration data for a specified channel. The channel can be specified by using a channel name or guid.

How to use the snippet:

  • Paste the name or guid code into your script