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.


[
{
"name": "name",
"type": "filename",
"label": "Name",
"semantic": "file:name"
},
{
"name": "data",
"type": "buffer",
"label": "Data",
"semantic": "file: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

