Describe the bug
I would like to send a request that contains both a file and some meta data about the file.
However, when I create the request, I can’t set the file in the x-www-form-urlencoded so when I send it, it does not have file information.
When I create the request using form-data, it contains the file information, but my server side API receives an empty body
To Reproduce
Steps to reproduce the behavior:
- create a new request
- set body to form-data
- type in ‘image’ for key and select a file for value
- type in ‘affiliation’ for key and type in affiliation value
- type in ‘name’ for key and type in ‘test’ for value
- select “Post”
- type in the URL
- click the send button
repeat steps, but select x-www-form-urlencoded
Expected behavior
I expect the image data and the other data to come through in my api, but it doesn’t
Screenshots
Here is the result using form-data. NOTE: my back end API has failed validation as it cannot find ‘affiliation’, ‘image’ or ‘name’ in the request (even though it’s present in the form-data)
Here is the result using www-form-urlencoded. NOTE: the back end has created the entry in the DB, but it is missing the ‘image’ portion of the request (it’s not present in the request)
App information (please complete the following information):
- App Type : REST API
- Postman Version - latest version
- OS: windows 7
Additional context
I have searched the web for a way to do this and it seem like there isn’t a good answer