Reputation: 2469
I am trying to send files like images via postman but not in form-data, I mean here in this area:
please help me how to do that from here
Upvotes: 1
Views: 1312
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:
Upvotes: 6