/
[GET] /notes

[GET] /notes

/api/dms/objects/{objectId}/native/notes

Description

Returns all notes for a specific object.

Request
Method

GET

Request optional
Query Parameter

  • objectTypeId (Integer): For performance reasons the objectTypeId of the object can be provided.

  • garbageMode (Boolean): Hand it over with true to fetch notes for a DMS object which is in the recycle bin.

Response
Format

JSON

Minimum Version

6.4.0

Request
Example

/api/dms/objects/11882/native/notes
/api/dms/objects/11882/native/notes?objectTypeId=262208&garbageMode=true

Result
Example

{ "objects": [{   "properties": { "system:objectId": { "value": "67520" }, "system:lastModifiedBy": { "value": "ROOT" }, "system:createdBy": { "value": "ROOT" }, "color": { "value": "2" }, "text": { "value": "My first note" }, "system:creationDate": { "value": "2024-06-27T16:12:01+02:00" }, "system:lastModificationDate": { "value": "2024-06-27T16:12:01+02:00" } } } ], "numItems": 1, "hasMoreItems": false, "totalNumItems": 1 }

 

Related content