-1

I want to add multiple images in the Postman for the POST API call.

Ramis
  • 13,985
  • 7
  • 81
  • 100
Abhishek Patel
  • 258
  • 3
  • 10
  • 1
    This is dependent on the API you are using? Just read the docs of these APIs. – maio290 Aug 13 '20 at 07:33
  • 1
    you can make files as an array[] see more at this post https://stackoverflow.com/questions/28185300/how-to-send-multiple-files-in-postman-restful-web-service – Temo Kasaburi Aug 13 '20 at 07:34

1 Answers1

1

You can go to Following steps:

  • Select body section in the request section
  • Select form-data
  • Add your key and hover on that key cell you will find the choice box with 2 choices(Text and File)
  • Select file in that choice box
  • Now you can find Select Files button in the Value cell (For select multiple file you can use ctrl+click)

You can see this image for a clear idea

enter image description here

Parth Ghinaiya
  • 119
  • 2
  • 6