Hi, @Paloma. I see the backend handler created to receive the file field data.
I believe I’ve found the reason and it is covered in this support guide:
Quoting the relevant section below:
- Make sure that you
POST
your form request (not GET) with aContent-Type
ofapplication/x-www-form-urlencoded
in most cases. However, if and only if you are submitting the form with a file upload then theContent-Type
needs to bemultipart/form-data
instead.
In my testing, the form is using content-type: application/x-www-form-urlencoded
for the submission. This is why the files are missing. Would you please change this to use content-type: application/x-www-form-urlencoded
instead?
If that doesn’t resolve the missing uploaded file issue (or if there are other questions), please let us know.