parastoo
parastoo

Reputation: 2469

Send file via postman

I am trying to send files like images via postman but not in form-data, I mean here in this area:

enter image description here

please help me how to do that from here

Upvotes: 1

Views: 1312

Answers (1)

Leo
Leo

Reputation: 7420

If you must send json then you need to encode image as base64 use this tool and send it as encoded string.

Otherwise just send it through form data like below:

enter image description here

Upvotes: 6

Related Questions