Sending Uploaded File to Server

Hi Feathery team,

I’m currently using Feathery’s file upload feature and am able to successfully submit files through the form. However, I need a way to send the uploaded file from Feathery to my own server after submission.

Could you please provide an example or guidance on how to do this? I’m looking for a way to either:

  • Access the file in a webhook or
  • Use a Feathery API or integration to forward the uploaded file to my server

Thanks in advance for your help!

Hi! You can use one of our storage integrations to pass it on your server such as SFTP. You can check other options on our integrations tab and find which one suits your use case best

I checked the SFTP integration, but I’m wondering — is there a more straightforward way to send the uploaded file to our server directly?

For example:

  • Can I build a multipart/form-data request using a API connector that includes the file?
  • Or is it possible to get the uploaded file as a base64 string via webhook or Feathery API, then send it to our server?

Appreciate any guidance or examples you can provide on this.

Hi @datnguyenatsleek,

You may refer to this documentation on transferring the url of the file you uploaded,

@Kenny

I have tried this but it doesn’t work.

the feathery_file_name is not populated and the content-length is always 0

I have managed to make it work once. but now it doesn’t work. Not sure what’s wrong?