How we can use AttributesToJSON process to reformat the n1,n2,n3 parameters to json string as below ?
{
"n1": 20,
"n2": {
"n3": "1400000474"
}
}
![ALWOSABY_0-1710073378143.png ALWOSABY_0-1710073378143.png](https://community.cloudera.com/t5/image/serverpage/image-id/40026i39017B3F17F81CE9/image-dimensions/535x283?v=v2)
we try to do that but the output of json string coming with \" , we want to pass the output of AttributesToJSON process to postHttp process
{
"n1" : "20"
"n2" : "{\"n3\":\"8001001922\"}",
}