GET api/DocumentCenter/DocumentNotes/All?overrideClient={overrideClient}&fromRowNo={fromRowNo}&toRowNo={toRowNo}&lastChanged={lastChanged}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| overrideClient | string |
None. |
|
| fromRowNo | integer |
None. |
|
| toRowNo | integer |
None. |
|
| lastChanged | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of DocCenterNote| Name | Description | Type | Additional information |
|---|---|---|---|
| noteId | integer |
None. |
|
| documentId | integer |
None. |
|
| comment | string |
None. |
|
| workflowAction | integer |
None. |
|
| lastUpdateDate | date |
None. |
|
| userName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"noteId": 1,
"documentId": 1,
"comment": "sample string 2",
"workflowAction": 1,
"lastUpdateDate": "2025-11-29T15:08:28.9958661+01:00",
"userName": "sample string 3"
},
{
"noteId": 1,
"documentId": 1,
"comment": "sample string 2",
"workflowAction": 1,
"lastUpdateDate": "2025-11-29T15:08:28.9958661+01:00",
"userName": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfDocCenterNote xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DocCenterNote>
<noteId>1</noteId>
<documentId>1</documentId>
<comment>sample string 2</comment>
<workflowAction>1</workflowAction>
<lastUpdateDate>2025-11-29T15:08:28.9958661+01:00</lastUpdateDate>
<userName>sample string 3</userName>
</DocCenterNote>
<DocCenterNote>
<noteId>1</noteId>
<documentId>1</documentId>
<comment>sample string 2</comment>
<workflowAction>1</workflowAction>
<lastUpdateDate>2025-11-29T15:08:28.9958661+01:00</lastUpdateDate>
<userName>sample string 3</userName>
</DocCenterNote>
</ArrayOfDocCenterNote>