Returns a property value from current configuration's last history object of specified type. History objects are created when the state of a configuration is promoted or demoted and when the work group ownership is changed.
string ConfigurationHistory(int historyType; string propertyName; [string propertyName2]; ...)
| historyType | Filters the type of history object. Not specified = 0, State change = 1, Ownership change = 2 | 
| propertyName | Name of a property to read. | 
| propertyName2 | Optional name of a property to read from an object that is referenced by the first property. | 
Example
ConfigurationHistory(1; "CreatedById"; "Name")
Returns the name of the user that made the last state change of the configuration.
