Buffer

Used to store file content as a natural binary value, without any extra conversions

Buffer is useful for handling files in download or upload modules.

Most APIs use the multipart/form-data content format to upload files and this works seamlessly with buffer types in Make.

Download a file

The Download a file module downloads a file from the service with data type buffer in the interface.

The parameters are correctly evaluated and automatically pre-mapped in the file input dialog in the following module that accepts buffer with the file's name and data.

Upload a file

The Upload a file module uploads a file to the service with data type buffer in mappable parameters and type multipart/form-data in communication.

Last updated