I'm not receiving the file uploaded in the form

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:

  1. Make sure that you POST your form request (not GET) with a Content-Type of application/x-www-form-urlencoded in most cases. However, if and only if you are submitting the form with a file upload then the Content-Type needs to be multipart/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.