Good Morning,
I need the JSON that is converted from a BOD to have one of the elements rendered as an array in the JSON.
If my BOD contains the following example, it works properly:
<categories>24</categories>
<categories>25</categories>
"categories": [
24,
25
]
If it only contains 1 element, it fails.
<categories>24</categories>
"categories": 24
Any thoughts or suggestions?
Thanks
Jeff