Hi,
Is there an equivalent of JSON array for XML output?
The JSON output is correct
[{
“names”: [
{
“first_name”: “Teresa”,
“last_name”: “Stewart”
},
{
“first_name”: “Irene”,
“last_name”: “Nelson”
}
]
}]
But when I change it to XML I get
<?xml version='1.0' encoding='UTF-8'?> [{"first_name":"Terry","last_name":"Duncan"},{"first_name":"Jack","last_name":"Burke"}]Thanks