POST CompanyDocumentNotes

Request Information

URI Parameters

None.

Body Parameters

CompanyDocumentNotes
NameDescriptionTypeAdditional information
ID

integer

None.

DocumentID

integer

None.

CreatedDate

date

None.

CreatedByUserID

integer

None.

Comment

string

None.

PrivateNote

boolean

None.

NotificationSent

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "DocumentID": 2,
  "CreatedDate": "2026-02-21T05:29:43.45835-06:00",
  "CreatedByUserID": 4,
  "Comment": "sample string 5",
  "PrivateNote": true,
  "NotificationSent": true
}

application/xml, text/xml

Sample:
<CompanyDocumentNotes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Layers.Data.Model">
  <Comment>sample string 5</Comment>
  <CreatedByUserID>4</CreatedByUserID>
  <CreatedDate>2026-02-21T05:29:43.45835-06:00</CreatedDate>
  <DocumentID>2</DocumentID>
  <ID>1</ID>
  <NotificationSent>true</NotificationSent>
  <PrivateNote>true</PrivateNote>
</CompanyDocumentNotes>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CompanyDocumentNotes'.

Response Information

Resource Description

IAPIResponseBase
NameDescriptionTypeAdditional information
Code

ResultCodes

None.

APITransactionID

string

None.

Result

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 200,
  "APITransactionID": "sample string 1",
  "Result": "OK"
}

application/xml, text/xml

Sample:
<IAPIResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Veripro.API.Base">
  <APITransactionID>sample string 1</APITransactionID>
  <Code>OK</Code>
</IAPIResponseBase>