I am utilizing an api to upload a file. I was getting this error in my React app and I tried in postman and received the same error. Is file upload supported by KOR? I am just adding a simple form data like the code that follows. I have tried with and without the ContentType header.
let data = new FormData();
data.append('file', image);
return axios
.post(url, data, {
headers: {
'Content-Type': 'multipart/form-data',
"x-api-key": key
}
})