When a message contain a list as json, this one is well formatted, here is the result :
"contacts": { "array": [ { "name": "Henri Duflot", "email": "henri@duflot.com", "phone": "" } ] },
I would have this result, is there a way to add an option to remove "array" string and obtain it ?
"contacts": [ { "name": "Henri Duflot", "email": "henri@duflot.com", "phone": "" } ] ,
Hello,
When a message contain a list as json, this one is well formatted, here is the result :
"contacts": { "array": [ { "name": "Henri Duflot", "email": "henri@duflot.com", "phone": "" } ] },
I would have this result, is there a way to add an option to remove "array" string and obtain it ?
"contacts": [ { "name": "Henri Duflot", "email": "henri@duflot.com", "phone": "" } ] ,
Thanks for your answer