How to send multiple files in postman ReSTful web service?

I got a solution. I need to make myfile an array like this: myfile[] :)


You can simple add multiple lines with same key and postman converts them to array. No need to add [] as suffix to key.

Request

enter image description here

Response

enter image description here

If you have an array objects that need to passed then follow below pattern

enter image description here


Update 2020 Postman

You don't need to add [ ] just put the param name and select files.


You need to add a square bracket [] sign to the parameter. Look at the following image. I add file[] to upload multiple images from the postman.

enter image description here