Webhook pulls JSON list. When I use javascript code to process the data received, the JSON list comes in as a comma separated list. In order for me to get it back into array form, I have too do a string.split(‘,’); However, some of the JSON fields contain commas! This is throwing off the array keys of the second value coming in.
Is it possible to instead convert the array into a pipe-delimited list first?