Hi All,
I am using REST receiver adapter (from AdvantCo) which converts data from XML to JSON format.
On target structure we have a boolean field which is mapped to a string field on source side.
Output i get:
{"product": [
{
"text": "My Adapter",
"isSapCertified": "true"
}
]}
but I want to have:
{"product": [
{
"text": "My Adapter",
"isSapCertified": true
}
]}
Please help
Regards,
Mandeep Virk