Hi @srinivas_chann1
You can send the file data in the form of form-data like this:
if(ajaxfile.files[0] !== undefined){ formData.append("file", ajaxfile.files[0]);}
your ajax call should be like this
$.ajax({ type: "POST", enctype: 'multipart/form-data', url: path, data: formData, ...