XSL Transform
Extensible Stylesheet Language Transformations (XSLT) is a language for transforming XML documents into other XML documents, or other forms such as text and HTML. The original document is not changed; rather, a new document is created based on the content of an existing one.
Use this Node to transform data that has been acquired from a source app or service before sending it to its destination.
Properties
SourceXml
Type: Xml Input
Input XML Document that serves as the SourceXml that you would like to transform to another XML Document
TransformXslt
Type: Xml Input
The XSL Transform that should be applied to SourceXml
TransformedXml
Type: Xml Output
Returns a XML Document that has been transformed using the XSLT Transform process.
Remarks
See Sample Workflow for basic XSL Transform examples.
Convert XML Attributes to Elements using the XSL Transform in this example: Sample Workflow
Additional examples for XSL are available at https://www.w3schools.com/xml/xsl_intro.asp