So my api call has these paragraph delimiters in it already. But the bubble api connector things they are dynamic values. Can I reformat this without the < >?
"html": "<p data-html-type=\"text\">{{ AGENT_PHONE }}</p>",
So my api call has these paragraph delimiters in it already. But the bubble api connector things they are dynamic values. Can I reformat this without the < >?
"html": "<p data-html-type=\"text\">{{ AGENT_PHONE }}</p>",
Two solutions A) use raw body instead of JSON b) put all the html value in one parameters and put the full string there
Thanks. As you know, i am pretty dumb. Is there an example you can give of option b? (converting the line I have above?)
"html":<html>
in JSON body
and put "<p data-html-type=\"text\">{{ AGENT_PHONE }}</p>"
in the value when the html parameters is created under the body section
thanks!