📝 Overview
When working with outputs in Yoom, if a double quotation mark (") is present, it can cause issues with generating JSON data correctly.
To ensure proper formatting, Yoom automatically converts double quotation marks to single quotation marks (') when they appear in the output.
⭐️ Important Points
When setting up API connections for Custom Apps or Custom Connect, if the output within the body parameters includes double quotes, they will be automatically converted to single quotes.
📍 Example
Desired Output:
You want to create JSON data like this:
{"contacts": [{"sample_data": "a"}]}
Using Output with Double Quotes:
If you configure your output like this:
{"contacts": [{"sample_data": ##{{the configured output}}}]}
Converted Result:
Yoom will convert the double quotes to single quotes, resulting in:
{"contacts": [{"sample_data": 'a'}]}
Related Keywords
Related Keywords
JSON, double quotes, single quotes, API, output conversion, Custom Apps, Custom Connect