When putting image in fileDropZone i'm receiving "The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received undefined" the configuration is running as other posts said using "{{ {...fileDropzone1.files[0], "data": fileDropzone1.value[0] } }}" in the body form parameter.
This works, but not everytime, sometimes the image goes, sometime it doesn't work, it looks like an intermittent error... There's something else that can be done to avoid this
I tried sending my file with this format {{ {...fileDropzone1.files[0], "data": fileDropzone1.value[0] } }} but I'm receiving "The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received undefined.
Now I'm trying sending the file like this {{schoolProfileGalleryUploader.value[0].base64Data}}, but I'm receiving internal server error, but again, this is working in postman, how can I make it work in retool too?