Is there a way that I can see the XML generated by Tessitura when someone generates an email order confirmation from the application? All the calls I see in the API that would give me that information require a session key...
You're right it is not documented. Its like an easter egg. I have attached one of our templayes you can see how it is used. Basically I am getting the raw xml in an from the OrderData.CartDocument object, then I make some tessitura calls to get extra information. Then I append it to the xml object, so that it is there when the transform is called. You can write the xml data out to the web page as well.
I forgot to add if you just want the xml data dumped to the web page to view you could use the following code in your aspx page:
Response.Write(OrderData.CartDocument.InnerXml);
That's very helpful. Is there a way to view the data without having to send the email? Not really a big deal, just curious.
Thanks much!
Take a look at the "Testing" section on page 364 of the web Api_documentation.pdf . It tells how to test these.