GET api/DocumentCenter/Notes/ByDocumentId?documentId={documentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
documentId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of DocCenterNote
NameDescriptionTypeAdditional 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:06:28.869807+01:00",
    "userName": "sample string 3"
  },
  {
    "noteId": 1,
    "documentId": 1,
    "comment": "sample string 2",
    "workflowAction": 1,
    "lastUpdateDate": "2025-11-29T15:06:28.869807+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:06:28.869807+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:06:28.869807+01:00</lastUpdateDate>
    <userName>sample string 3</userName>
  </DocCenterNote>
</ArrayOfDocCenterNote>