Also See: Mule 4 Dataweave 2.0 code to convert a String to JSON output
Converting complete JSON array into a string using Dataweave:
%dw 2.0
output application/json
--
write(payload."Books Info",'application/json')
Output:
Also See: Mule 4 Dataweave 2.0 code to convert a String to JSON output
%dw 2.0
output application/json
--
write(payload."Books Info",'application/json')
0 Comments