Problem with {{NotAVariable}} inside a http request

Hi Community!

Trying to generate an http request
The Request Content should be like following:

{
“input_files”: {
“in_1”: “https://www.dropbox.com/…”,
“in_Musik2”: “https://www.dropbox.com/…”
},

“output_files”: {
“out_1”: “out_01.mp4”
},
“ffmpeg_command”:
“-i {{in_1}} -i {{in_Musik2}} -filter_complex [0:a][1:a]amix=inputs=2:duration=shortest -c:v copy -c:a aac {{out_1}}”
}


But make.com interprets expressions that are in double curly {{expression}} brackets as a variable, … however, I would like to have this text in the request content without any changes … how do I do that?

Welcome to the Make community!

For more information, do view these similar questions previously asked by other community members, which may answer your question:

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.

1 Like

Hi samliew,

thanks a lot … works fine :slight_smile:

Wolfgang