@caio-kenup, I'll mention this setting in your profile, but you may have already found it:
f4d4760b-e767-4f47-9922-3d08d5143092-image.png
I blocked those characters by default because they could be used to run arbitrary commands if parameters are enabled.
A safer way to do what you're trying to do would be to use a script that takes a series of parameters like this:
Linux/Mac bash script:
set -x curl "http://localhost:4040/webhook/id?par1=$1&par2=$2&par3=$3"Make it executable with chmod +x ./script.sh
Test it with: ./script.bat a b c
Windows script:
curl "http://localhost:4040/webhook/id?par1=$1&par2=$2&par3=$3"Test it with: script.bat a b c