I'm currently passing emailaddresses in each line but when i submit it is storing values as test@test.com;test2@test.com but it has tostore in db as in new line and it has to be passed to an integration as {"test@test.com,test2@test.com"} Can someone please help
Discussion posts and replies are publicly visible
Give this a try and let me know if that works...For Database Storage (with newlines):Change line 219 --> a!save(ri!GASR_Requests.emailAddresses, local!data.emailAddresses),For integration:local!formattedEmailString: concat( "{""", joinarray(local!individualEmails, ","), """}" ),
integration is failing looks like it is not taking the values in correct format
Have you tried with passing hard coded value?
If it worked could you please share here that value.
Shubham Aware from interface?
Shubham Aware
Have you tried thisconcat( "Emails"":""", joinarray({"test@test.com", "test2@test.com"}, " , "), "")