Hello,
I’m trying to use the Parse JSON module parse the JSON of something sent to a Mailhook. The Mailhook captures a JSON string excluding the brackets { } (this is because these cannot be included in the email for technical reasons).
In the Parse JSON module, I have the following configuration:
I’ve enclosed the response from the Mailhook in brackets which should theoretically make the JSON string passed to the module valid. However, when it’s run on the data from the Mailhook, I get the following error:
The JSON string that it says is invalid is as follows:
{ “First Name”:“R”,“Last Name":“LC”,“Email”:"rlc@test.com”,“Address”:“test address”,“Postal Code”:“34823”,“Phone”:“(123) 752-9345”,“Services”:“Weekly, BiWeekly, Move-In or Move-Out, One-Time Cleaning”,“CustSource”:“Word of Mouth, Valpak Coupon, Saw Your Company Car, Flyer” }
If I copy the JSON string that it says is invalid into jsonlint’s online JSON validator, it says the JSON is valid.
I’m not sure where to go from here in trying to figure out why Make thinks the valid JSON is actually invalid.
Any help would be greatly appreciated. Thank you