Link Search Menu Expand Document

How to control which files to include or exlcude from input zips

For Zapier, Integromat and others plugins insert custom profiles into profiles field. For API calls please set value as string in profiles parameter as string.

/pdf/merge2 (aka Advanced Mode in PDF Merger in Zapier and other platforms) supports zip filles as input. You can control which files to include from input zip files with a profile like this:

// include PDF, XLS and XLSX files
{ "zipIncludeFilter": "*.pdf,*.xls*" }
// exclude DOC, DOCX, XLS and XLSX files
{ "zipExcludeFilter": "*.doc*,*.xls*" }

where zipIncludeFilter and zipExcludeFilter support * and ? wildcards.

Applies to:

  • pdf/merge2