I\'m struggling with creating POST multipart/mixed request with Postman Chrome extension
Here is my curl request what works nice
curl -H \"Content-Ty
Left this comment on: https://github.com/postmanlabs/postman-app-support/issues/1104
Ninja update: Not sure if this will help anyone else but there is a workaround for a specific scenario where you have multiple file types / content types being uploaded in a single multipart POST request.
Content-Type
to multipart/mixed
.form-data
option in Body
.file
, adding a key name.This approach doesn't require actually manually specifying each Content-Type
or Content-Disposition
. The trick here was to serialize all relevant content into a persistent file type. You can ignore the "convert it into a file" step if it's text :) Hope that helps someone!