Is there a way to override Postman’s default variable substitution if the field has double curly braces in it, such as when submitting a mustache template which also uses double curly braces.
For example, submitting this as a body to an endpoint:
{
"alertConfig": "{\"priority\": \"P2\",\"message\": \"{{alertName}}\"}",
"some other field": "some value"
}
Where the {{alertName}} needs to be exactly that. It should not be substituted for whatever is set as that variable in whatever scope.
I know we can just not set the variable, but wondering if there’s a way to tell postman “don’t substitute anything in double curly braces in this block”. Or on individual instances?
Thanks