Hi,
Normally with a REST upload, you would have a file parameter of type file (not text) and then Postman would automatically convert it into a MIME encoded stream. With the REST API, when it's asking for a body consisting of JSON which represents the type, the name, the parent_id, and the file, the file is supposedly the path to the file. When I do this, i.e.
{
"type": 144,
"parent_id": "{{attachmentFolderId}}",
"file": "C:\users\f*****\Documents\simple.txt"
}
I get this error:
It seems to be barfing on the file parameter. If I am using Postman to test this, what should the payload look like?
Thanks in advance
-Hugh