I get this when sending in a "html template" through a string parameter in my pabbly app: Bad control character in string literal in JSON at position 2 (line 1 column 3). But if i send in the "json safe" and escaped parameter, pabbly "double escapes" the actual request to the api? Is there a way to send in a "json safe" parameter through the workflow client, which doesnt get re-escaped or double escaped as e final result in the integration request?
This is the current result: {"html_template":"<!DOCTYPE html>\\r\n<html lang=\"en\">\\r\n <head>\\r\n <meta charset=\"UTF-8\">\\r\n <title>Invoice</title>\\r\n .....
Desired result: {"html_template":"<!DOCTYPE html>\r\n<html lang=\"en\">\r\n <head>\r\n <meta charset=\"UTF-8\">\r\n <title>Invoice</title>\r\n .....
(When sending in the "raw" html input as shown in the image beneath., I get a json error.. if i send in an "escaped" input, the final result becomes "double escaped as shown above when the API recieves the request")
From the integration app parameter definition inside the action: