1

I have this curl command that works perfectly:

curl -v -H "x-amz-server-side-encryption:aws:kms" -T ~/Downloads/myfile.csv "http://example.com"

I'm trying to translate this command to postman and it doesn't work. I'm trying to send a PUT command, attaching a file using form-data, but I guess that's not right.

This is my postman setup that doesn't work:

enter image description here

Moshe Shaham
  • 15,448
  • 22
  • 74
  • 114

1 Answers1

1

Found the issue, I needed to send the body as "binary" type, and upload the file there.

Moshe Shaham
  • 15,448
  • 22
  • 74
  • 114