I know how to publish json, and I know how to publish a file in multi-line form in Postman . But how can I do both together. For instance:
Here is my jason for publishing:
{
"title": "Post title yeah",
"body": "My first post body"
}
So how can I send image.jpglocated in /home/me/Desktop, along with the above json?
UPDATE: Please note that I want to send the file using JSON , so my question is different from this . which is a multi-page form submission using Postman.
source
share