Takes a set of files and packs them into a single downloadable zip archive. You can optionally name the member files inside the archive and set how long the download link remains valid. Priced at 0.5 credits per MB of the input files.
You want to bundle several files into a single download.
Creating a 7z archive, or any format other than zip.
~1 credits / megabyte (up to 100)
Priced at 0.5 credits per MB of the files packed; a large bundle costs more.
Estimated; the actual charge depends on your input and is shown in the response.
Set these inside the intent when you run it.
The files to pack into the zip archive.
A name for the resulting zip file.
A download URL for the resulting zip archive.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Archive skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/archive/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"zip","files":"report.pdf, data.csv, summary.docx","output_name":"reports.zip"}}'Example requests