Skip to main content
Converts the context data into an XML string. Use this when a target system expects to receive XML, for example a SOAP service or an older partner API. It takes the structured data you have built up in your flow and turns it into a single XML document, letting you choose the name of the outer element and decide how text that itself contains markup is written.

Fields

Sample data

FieldValue
Root element nameorder
Disable cData wrappingoff
Input:
{
    "id": 1024,
    "customer": "Maria",
    "total": 49.95
}
Output:
<?xml version="1.0"?>
<order><id>1024</id><customer>Maria</customer><total>49.95</total></order>