system.tag.getConfiguration UDT parameters

Is there a way to read all of the parameters of a UDT definition without creating an instance of the UDT? We are trying to create a tag import/export utility and would like to export a CSV with headers as all of the parameters but right now I need to create a dummy instance of the UDT for getConfiguration to read all of the parameters. It works for now but would be more fool proof if you could get the configuration straight from the UDT definition.

getConfiguration should work fine on UDT definitions. You can right click on the UDT definition to copy it’s path, which probably looks like [default]_types_/udtFolder/udtDef

Oh interesting I was using system.tag.getConfiguration(’[default]’+udtDef) and it was returning information just not the parameters. Thanks!