how can i construct a body in an HTTP enrichment to include both dynamic column values as well as a hardcoded key/value pair?
To construct a body in an HTTP enrichment with both column values and hardcoded key/value pairs, follow these steps:
1. Use JSON formatting for the body.
2. Enclose all keys in double quotes.
3. For hardcoded values, use the standard JSON format: "key": "value".
4. For column values, use the /column syntax: "key": "/column".
5. Ensure dynamic string variables are in quotation marks.
Example: LBKS{ "hardcodedKey": "hardcodedValue", "dynamicKey": "/columnName" }LBKS
Remember to separate key-value pairs with commas and follow proper JSON syntax. If you're still having issues, please copy and paste your JSON into the chat so we can troubleshoot further.