Replies: 1 comment
-
yes, you can use REST API for that. For that you need to write a REST API client, which will run, e.g. once a day and check the created_at field of all documents. If that create_at field is older then e.g. 6 months, then again, via REST API you can download that document/specific version of the document (e.g. initial version) and then do whatever you want with it e.g. move to separate folder. You can see the full REST API interface by starting web app with (for example): $ docker run -p 9400:8000 Then open you browser at http://localhost:9400, username=admin, password=123 |
Beta Was this translation helpful? Give feedback.
-
Hello, I plan to use papermerge to store a lot of documents. If there are documents older than 6 months I would like to remove them from the filesystem and archive them somewhere else (maybe compress them) so that I wont have to keep on increasing storage for papermerge. Is there any way to do this archiving of old documents with papermerge? Any help will be greatly appreciated. Thank you!
Beta Was this translation helpful? Give feedback.
All reactions