Hi!
I am working on a REST-Request and my input document is my XML Bod. with XPATH and IonApiRef.
Everything works fine, but it generates all fields as a string in my json. How can i select with xpath a value from my xml and transform it in a integer in my json?
<testTag>3.4</testTag>
Result is that my JSON looks like:
{
"testTag": "3.4"
}
I need to have the following JSON:
{
"testTag": 3.4
}
Thanks for your help,
have a nice afternoon