>> Or how do I see the xml so I’ll know what I need to create my own queries?
Based on my tests, this "Identity" stylesheet would return the same XML that it received:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet> Obviously, you want to make a safe backup of the original XSLT, before you overwrite it in uStore Admin :-)
Now, from the "Orders" tab in uStore Admin, clicking the "Download Job Ticket" would return you a so-called ".doc" file which actually contains XML, that could be displayed nicely with any tool like the "XML Tools" extension of Notepad++, per instance:
I must say, though, that I could not see any "CustomizationValue" or "FullfilmentProperties" elements, despite the related Product uses the Customization Wizard. Still some bit of mystery to be solved here...
Good luck and enjoy!