- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
reformat t parameters to json string
- Labels:
-
Apache NiFi
Created 03-10-2024 05:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How we can use AttributesToJSON process to reformat the n1,n2,n3 parameters to json string as below ?
{
"n1": 20,
"n2": {
"n3": "1400000474"
}
}
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\"}",
}
Created 03-10-2024 06:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
we update the "JSON Handling Strategy" property to Nested into AttributesToJSON , then it's working . thank your for all
Created 03-10-2024 06:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
we update the "JSON Handling Strategy" property to Nested into AttributesToJSON , then it's working . thank your for all
