Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 61 Next »

Table of Contents

Introduction

The audit trail is the history protocol of an object, serving to document its entire lifecycle. There are many different actions that trigger the creation of a new entry in the respective object's audit trail. In this article, an overview of the different history codes is provided that can occur in the audit trail.

History Codes

The GET "/dms/objects/{id}/history” REST endpoint returns a list of changes made to the object with the ID {objectId}. The meanings of the individual history codes are listed in the table below.

Core APIDescriptionDetailExplanationEndpoints triggering the entry
Import:
100Object createdOBJECT_CREATEDThe specified object was created by functions of the client or by an import./api/dms/objects
101Document createdOBJECT_CREATED_WITH_CONTENTThe object was created using functions of the client or via an import operation./api/dms/objects
110Object tag createdOBJECT_TAG_CREATED: [<name>, <state>]A tag for the object was created./api/dms/objects/{objectId}/tags/{name}/state/{state}
Deletion:
200Object irrevocably deletedOBJECT_DELETEDThe object was deleted and cannot be restored.

/api/dms/objects/{objectId}

/api/dms/objects/{objectId}/versions/{versionNr}

202Object marked for deletionOBJECT_FLAGGED_FOR_DELETEThe object was moved to the recycle bin.

/api/dms/objects/{objectId}

210Object tag deletedOBJECT_TAG_DELETED: [<name>, <state>]A tag for the object was deleted./api/dms/objects/{objectId}/tags/{name}
Update:
300Metadata modifiedOBJECT_METADATA_CHANGEDThe metadata of the object or its status was edited using functions of the client or via an update carried out during the import operation.

/api/dms/objects/{objectId}

/api/dms/objects/{objectId}

301Content changedOBJECT_DOCUMENT_CHANGEDThe document was edited using functions of the client or via an update carried out during the import operation./api/dms/objects/{objectId}/contents/file
303Object updated and content movedOBJECT_UPDATE_CONTENT_MOVEDThe object was updated and the document was moved.

/api/dms/objects/{objectId}/actions/move/contents/repositories/{repositoryId}

/api/dms/objects/{objectId}/versions/{versionNr}/actions/move/contents/repositories/{repositoryId}

310Object tag modifiedOBJECT_TAG_UPDATED: [<name>, <state>]One of the object's tags was changed.

/api/dms/objects/{objectId}/tags/{name}/state/{state}?overwrite=true

/api/dms/objects/tags/{name}/state/{state}?query=<SQL>

325Object restored from an old version

OBJECT_RESTORED_FROM_VERSION: [<versionNr>]

The data of the old object version were used to update the current object version./api/dms/objects/{objectId}/versions/{versionNr}/actions/restore
340system:parentId property modifiedDOCUMENT_MOVEDThe value for the system:parentId property was modified (added, updated, removed). Additionally, an audit entry with action 300 was created.

POST /api/dms/objects/{objectId}

PATCH /api/dms/objects/{objectId}

Retrieve:

400

Output contentDOCUMENT_ACCESSED

The document content was read by the user, printed, or otherwise output. No changes were made.

As of 2022 Summer: If a user retrieves the binary content file of the same object version multiple times within 10 minutes, only the first retrieval is documented in the audit trail.

The following processes internally retrieve the object's binary content file and thus trigger the creation of an audit entry as well:

  • the first retrieval of a PDF rendition after the object creation or a content update

/api/dms/objects/{objectId}/contents/file

/api/dms/objects/{objectId}/versions/{versionNr}/contents/file

/api/dms/objects/{objectId}/contents/renditions​/pdf

401Metadata retrievedMETADATA_ACCESSED

The object's metadata were retrieved for viewing.

The following processes internally retrieve the object's metadata and thus trigger the creation of an audit entry as well:

  • each retrieval of a PDF rendition 

/api/dms/objects/search

/api/dms/objects/{objectId}

/api/dms/objects/{objectId}/versions

/api/dms/objects/{objectId}/contents/renditions​/pdf

402Text preview downloadedRENDITION_TEXT_ACCESSED

The text rendition of the object's binary content file was retrieved.

As of 2022 Summer: If a user retrieves the text rendition of the same object multiple times within 10 minutes, only the first retrieval is documented in the audit trail.

/api/dms/objects/{objectId}/contents/renditions/text
403PDF preview downloadedRENDITION_PDF_ACCESSED

As of 2022 Summer: The PDF rendition of the object's binary content file was retrieved.

If a user retrieves the PDF rendition of the same object multiple times within 10 minutes, only the first retrieval is documented in the audit trail.

/api/dms/objects/{objectId}/contents/renditions​/pdf

Read on

Retrieving Document History Entries 

This tutorial shows how we can use a Java application to make a request to the Core API of the yuuvis® API system to retrieve the history entries of a DMS document. In addition, it briefly describes which history entries are generated for a document. Keep reading

Endpoint for retrieving a document's history

This endpoint retrieves the history entries of a DMS object identified by objectIdHistory entries document modifications of or actions performed on a DMS object. Keep reading

  • No labels