You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the ability to "soft" delete a document / restore document.
API(s)
DELETE /documents/{documentId}?softDelete=true
PUT /documents/{documentId}?restoreDelete=true
GET /documents?showDeleted <-- List Deleted documents
Questions:
I assume the only way to see a "deleted" document is through GET /documents?showDeleted otherwise the document will disappear from all other searches.
The text was updated successfully, but these errors were encountered:
for the restore, I'd recommend this endpoint: PUT /documents/{documentID}/restore
I think showDeleted sounds like it will include deleted in the results such as GET /documents and POST /search. I wonder if for now, the need for a "trash bin" should use GET /documents?deleted=true or GET /documents?status=softDeleted. I like the idea of deleted=true for now, rather than implementing status at the moment.
New Feature
#182 - Document Retry - documents that fail to process are added to a queue for reprocessing
#192 - Added POST /documents/{documentId}/actions/retry for retrying of failed document actions
#196 - Added OCR support for PDF Portfolio files
#194 - Added support for document content to be a "deep link"
#189 - Added document "soft delete"
#146 - Added insertedDate, completedDate to Document actions
#171 - Added Document Workflows
#179 - Added Cognito group that allows authentication but no authorization
#170 - Added Notification action
#168 - Added SMTP support to /configuration API
#169 - Added /groups API
#201 - Added version of FormKiQ that can be run via Docker
Updates
#166 - AWS Lambda end of support for Custom Runtime based on Amazon Linux 1
#188 - Intelligent document processing with OpenAI, uses Schemas to improve results
#119 - improved performance when removing documents
Bugs Fixes#172 - Fixed Fulltext action ending up in a bad state
#185 - Fixed GET /documents/{documentId}/url returns full path of document instead of filename
#197 - POST /documents/compress is not available for users with READ ONLY access
Add the ability to "soft" delete a document / restore document.
API(s)
DELETE /documents/{documentId}?softDelete=true
PUT /documents/{documentId}?restoreDelete=true
GET /documents?showDeleted <-- List Deleted documents
Questions:
The text was updated successfully, but these errors were encountered: