API: Zipping a list of images
Creates a ZIP file from a list of images.
Request
POST /process/zip
{
"files": [
{"id": "0a6677...", "name": "Image 1.jpg"},
{"id": "a10464...", "name": "Image 2.jpg"},
...
]
}
The list of images to be zipped is sent as JSON object in the request body.
| files | The list of images to be included in the ZIP file. |
| id | The image ID. |
| name | The corresponding name of the image. |
Response
200 OK
{
"output": "296f06..."
}
| output | The produced ZIP file. |