2

I am trying to upload a file of extension *.ota and save it in a predefined path. However when I tested it with postman and used "form-data" to send the file I get error 415 Unsupported Media Type.

GHOST
  • 203
  • 4
  • 14

1 Answers1

1

Add [FromForm] before file

public string UploadFile([FromForm]HttpPostedFileBase file, String Type)
        {
            ...
        }