Hello @Sumit_Choubey ,
Note that Content-Type is a mandatory request header for /upload.
From your code I see that you don’t send the Content-Type at all. You defined it in headers but headers is never used.
So the correct axios request would be:
await axios.post(uri,bodyFormData,{
headers: { 'Content-Type': 'multipart/form-data' },
})
or in your case, with predefined headers variable:
await axios.post(uri,bodyFormData,{headers})