This command is used to retrieve items from the config_params table and optionally the associated values that are used to populate select lists, radio buttons, etc for those parameters. Something similar to the following XML should be passed to dispatchMBAPI() when you want to call the GetConfigs command:
<mbapi> <command><!-- None --></command> <showXMLHeader><!-- None --></showXMLHeader> <params> <configGroupID><!-- int --></configGroupID> <configGroupName><!-- string --></configGroupName> <configParamID><!-- int --></configParamID> <configParamName><!-- string --></configParamName> <getFormAttributes><!-- int --></getFormAttributes> <sortDir><!-- None --></sortDir> <sortColumn><!-- None --></sortColumn> <recordOffset><!-- None --></recordOffset> <numRecords><!-- None --></numRecords> </params> </mbapi>
None
mbapi
command
showXMLHeader
params
configGroupID
The ID of the config group whose parameters that will be fetched.
configGroupName
The name of the config group whose parameters that will be fetched. This should be used sparingly as many config groups have the same name.
configParamID
The ID of the config parameter to fetch. This will always select at most 1 parameter.
configParamName
The name of the config parameter that will be fetched. This cannot be considered a unique identifier and so should be used accordingly.
getFormAttributes
Set to 1 to retrieve associated values that are used to populate select lists, radio buttons, etc for selected parameters. This is not a selection criterion, so should be used in conjunction with other criteria listed above.
sortDir
sortColumn
recordOffset
numRecords