I am currently sending something like this through raw category of Postman. This works fine however I cant attach an image
{
"user" : {
"first_name": "employeeA",
"last_name": "smith",
"username": "employeeA",
"employer_image" : --->Insert image here
},
"employee_zip" : 12345
}
However I dont know how to attach the image file. I read here that I could instead use the form data category and send the image.So I did something like this
This does not work is there any way for me to select a file and then use raw json to point to that file ?