Issue with image upload from Webflow to Make

:bullseye: What is your goal?

I want to use a custom webhook in Make.com to upload an image from Webflow/Memberstack by following this tutorial: https://youtu.be/vIKdMxWUzTg?si=thESI9d04nZvdJKq

:thinking: What is the problem & what have you tried?

The custom webhook in Make.com does not include the fields “fileToUpload:name” or “fileToUpload:data” as shown in the tutorial. Instead, it only contains other data like text and Member ID, but not the image.
I’ve tried troubleshooting by using different Memberstack “input” components, but none of them have worked for image uploads.

:clipboard: Error messages or input/output bundles

The webhook’s input bundle is missing the expected fields “fileToUpload:name” and “fileToUpload:data”, and instead only returns text and Member ID data.

Member stack isn’t sending the file as file To Upload:name / file To Upload:data. That tutorial uses an older setup where the upload field actually sends the file in the webhook. In your case, you’ll need to either (1) use an upload field that really supports files in webhooks, or (2) send the image URL instead and then use HTTP, Get a file in Make to download it.

Hey @Fluid_Film_Norge ,

I just tested this memberscript to check this out and it seems to work as expected and sends the file data to the webhook in Make.

For testing purpose, you can clone this template and link the form to your webhook to test the flow out. It should provide you the file data accordingly. You can cross-check the settings, code present in the cloneable with your site to find what is missing as well.

If you still face issues, you can share a sandbox link of the site where you are trying to implement this use-case since it will help in troubleshooting.

Hope this helps.