1

If a module should output a file with binary data, what should its interface look like so that the file can be mapped correctly in other modules in a scenario?

1 Answers1

2

The interface should contain data and filename.

[
  {
        "name": "data",
        "type": "buffer",
        "label": "Data",
        "semantic": "file:data"
    },
    {
        "name": "fileName",
        "label": "File Name",
        "type": "text",
        "semantic": "file:name"
    },
]

You can take a look at the Dropbox example: https://www.integromat.com/app/dropbox/5/module/getFile#tab:interface

Petr Malimánek
  • 336
  • 1
  • 8