How to Convert XML to JSON ??

preview_player
Показать описание
Input XML:

#noeli
#salesforce
#Vlocity
#Omnistudio Developer Certification
#Omnistudio Consultant Certification
Рекомендации по теме
Комментарии
Автор

If you want to try it for yourself, here are the details.

Input XML:
<note>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>


Expected Json
{
"notes": {
"body": "text",
"to": {
"email": "vale",
"destination": "dfd"
},
"from": {
"email": "vale",
"source": "dfd"
},
"heading": ""
}
}

s-alpha