Member since
09-06-2021
3
Posts
1
Kudos Received
0
Solutions
09-21-2021
10:41 PM
2 Kudos
English Translation:
Question:
How to transform a JSON into multiple flow files?
Ex: how to generate through this Json below and generate 4 flow files?
[ { "ID_WA_REcipient" : "5599999999999", "DES_MENS_NMO" : "You are receiving the 1st copy of your invoice.", "COD_IDEN_MENS_ENV_NMO" : "xptoqwerzxcv" }, { "ID_WA_REcipient" : "5599999999999", "DES_MENS_NMO" : "You are receiving the 1st copy of your invoice.", "COD_IDEN_MENS_ENV_NMO" : "xptoqwerzxcvb" }, { "ID_WA_REcipient" : "5599999999999", "DES_MENS_NMO" : "You are receiving the 1st copy of your invoice.", "COD_IDEN_MENS_ENV_NMO" : "xptoqwerzxcvc" }, { "ID_WA_REcipient" : "5599999999999", "DES_MENS_NMO" : "You are receiving the 1st copy of your invoice.", "COD_IDEN_MENS_ENV_NMO" : "xptoqwerzxcvd" }]
Solution
You will use the SplitJson processor and in the property "JsonPath Expression" you will put "$" (without quotes).
... View more