TO_XML
Converts an object into XML, root element name is optional.
Categories: Data Parsing/Conversion
Syntax
TO_XML(object, root_element_name = "hash")
Examples
Example 1
Input
1
{
2
"my_action": {
3
"object": {
4
"city": "Melbourne",
5
"country": "Australia",
6
"post_code": 3000,
7
"state": "Victoria"
8
}
9
}
10
}
Formula
TO_XML(my_action.object)
Output
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<hash>\n <city>Melbourne</city>\n <state>Victoria</state>\n <post-code type=\"integer\">3000</post-code>\n <country>Australia</country>\n</hash>\n"
Example 2
Input
1
{
2
"my_action": {
3
"object": {
4
"city": "Melbourne",
5
"country": "Australia",
6
"post_code": 3000,
7
"state": "Victoria"
8
}
9
}
10
}
Formula
TO_XML(my_action.object, "Data")
Output
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Data>\n <city>Melbourne</city>\n <state>Victoria</state>\n <post-code type=\"integer\">3000</post-code>\n <country>Australia</country>\n</Data>\n"
Sample actions
Select an action to inspect
You can also click "Copy actions" and paste them in your Tines story to see how they work.