GET api/docNote/{id}

Return a single value from the Notes table using the primary key as ID.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The Notes Primary Key.

integer

Required

Body Parameters

None.

Response Information

Resource Description

docNoteDb
NameDescriptionTypeAdditional information
NoteID

integer

None.

DocumentID

integer

Required

DocumentTitle

string

None.

VersionID

integer

None.

VersionNumber

string

None.

PersonName

string

None.

Note

string

Required

CreatedBy

integer

None.

CreatedDate

date

None.

UpdatedBy

integer

None.

UpdatedDate

date

None.

results

Collection of ValidationResult

None.

Response Formats

application/json, text/json

Sample:
{
  "results": null,
  "NoteID": 1,
  "DocumentID": 2,
  "DocumentTitle": "sample string 3",
  "VersionID": 1,
  "VersionNumber": "sample string 4",
  "PersonName": "sample string 5",
  "Note": "sample string 6",
  "CreatedBy": 7,
  "CreatedDate": "2025-12-06T23:42:54.5488966+00:00",
  "UpdatedBy": 9,
  "UpdatedDate": "2025-12-06T23:42:54.5488966+00:00"
}

application/xml, text/xml

Sample:
<docNoteDb xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Tables">
  <results xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.ComponentModel.DataAnnotations" i:nil="true" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Data.Utility" />
  <CreatedBy>7</CreatedBy>
  <CreatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-06T23:42:54.5488966Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </CreatedDate>
  <DocumentID>2</DocumentID>
  <DocumentTitle>sample string 3</DocumentTitle>
  <Note>sample string 6</Note>
  <NoteID>1</NoteID>
  <PersonName>sample string 5</PersonName>
  <UpdatedBy>9</UpdatedBy>
  <UpdatedDate xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-06T23:42:54.5488966Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </UpdatedDate>
  <VersionID>1</VersionID>
  <VersionNumber>sample string 4</VersionNumber>
</docNoteDb>