@sid I’ve successfully set up the extension and it’s showing up in wappler server connect.
Except when I try to submit a file through the Server Connect to the API URL nothing is showing up.
Shouldn’t the “Input Data” fields show up in the body of the request?
My file storage is handled by Appwrite, and the way you can upload a file to Appwrite is by including the bucketId in the url and the file is uploaded via the body of the api post request.
The extension cannot upload the file directly from the $_POST request data.
You will need to create another step for uploading the file from $_POST.file to your server, and then supply the uploaded file path to the extension where you have configured $_POST.file.
Also, file can be specified only in the file details section, and not in the input data section.
I can check if there is a possibility to upload file directly from $_POST.file binding, but can't promise when.