Best practices for sending zip file to server

I am trying to implement a service where a client sends a zip archive to a server and I am wondering how can I do so without having to decompress the zip file I generated using camlzip?
I would really appreciate if anyone had an idea on the most appropriate way to do it (knowing that the zip archive I want to send contains text files only).

:camel:

Uh, HTTP POST ? Doesn’t matter what sort of file it is – just POST a binary blob, no?

1 Like

thanks, I will try this.