> For the complete documentation index, see [llms.txt](https://docs.wem.io/platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wem.io/platform/wemtipsandtricks/processes/zip-archive-process-node.md).

# ZIP Archive Process Node

With the Create ZIP Archive Process Node, you can create a zip-file containing a compressed version of the original file (as provided in the input parameter).

<figure><img src="/files/rbEAIOWMj8bwuCfccj9c" alt=""><figcaption><p>ZIP Process Node Parameters</p></figcaption></figure>

The Input File parameter may let you think that you can only put 1 file into the ZIP archive. But this parameter expression also accepts a list of File Fields, enabling you to add multiple files into the ZIP Archive in one go. As displayed in the example above:

* Have a list with a File field (`[Products]` with `[Products.Images]` in the example);
* In the Input File Parameter expression, use `([Products.Image] of [Products])` to add the images of all products to the ZIP Archive.&#x20;
* Obviously, you can add a where-clause to limit the records of the list (Products where Name contains ...) or you can use a (transient) List with only one File field, and in your flow before the ZIP process, add any file from your project to that (transient) list and then use the above mentioned expression: `([FileField] of [List])`
* If you have multiple file fields that are not in a single list but just a few "stand-alone" file fields, you can combine them with the following expression:<br>

  ```javascript
  List([Attachment1], [Input.Files.File01], [Input.Files.Image01])
  ```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.wem.io/platform/wemtipsandtricks/processes/zip-archive-process-node.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
