Is there any way to get your system to NOT interpret special characters. For example, I bring in data via a custom request in json with a \n the data to signify a new line. You interpret that and display the new line in messages. That’s great, but I can’t figure out how to tell you not to do that. I wrote some javascript code to replace \n with \n so that the \n comes through as text, but you still interpret it. The problem is that when I pass json via webhook, there’s an error because you pass the data with a new line in there instead of with the \n.
e.g., instead of passing:
{“message”:“hi have a great day.\nyou’re great”}
you pass:
{“message”:“hi have a great day.
you’re great”}
And that causes a 400 in the post request
Thank you