/
[GET] /history

[GET] /history

/api/dms/objects/{objectId}/history

Description

To retrieve the complete change history of a DMS object, send the request with the objectId of the DMS object.
For history code see 1.4 History codes.

By default, the last 50 entries are returned. As of version 3.2.0 of the DMS service you can control the history entries returned by using the following query parameters

  • size - defines the number of returned history entries

  • page - defines on which page the result list of history entries should be started (one page = 50 entries)

For example, to get 50 history entries from 51 to 100 returned use size=50 and page=2.

Request
Method

GET

Response
Format

JSON

Minimum Version

3.0.2

Request
Example

/api/dms/objects/2563/history
/api/dms/objects/2563/history?size=50&page=2

Result
Example

{ "objects": [{ "properties": { "system:createdBy": { "value": "ROOT" }, "description": { "value": "Server - DMS executor" }, "action": { "value": 100 }, "detail": { "value": "Object created" }, "system:creationDate": { "value": "2015-09-07T15:26:13+02:00" } } }] }

 

Related content