Hi
I noticed that when I set the content type on the fields in the body, it doesn’t use them when generating curl snippets.
E.g.:
When generating the curl command it looks like this:
curl -L -X POST 'localhost:8080/test' -F 'test={"testA":{"testB":"testB"}}' -F 'test2=@/path/to/file'
Instead of
curl -L -X POST 'localhost:8080/test' -F 'test={"testA":{"testB":"testB"}};type=application/json' -F 'test2=@/path/to/file'
Is this a bug or am I doing something wrong?
I’m on MacOs with Postman version 7.32.0.
Thanks