File Content is not available in uploaded file

Hi, I’m trying to upload file via postman raw to AWS S3 bucket. I’m using the below code. The file is uploaded and available in S3 but without the file content. Instead I could see the raw code present in the file.

body
{
mode: “binary”,
filepath: {{FPath}}
}

Since you are using JSON, Postman will not do anything special when sending this.

I think you need to use form-data as a way to actually upload the file.