GET api/lookUp/customerNotes?contactId={contactId}

Looks up notes for each customer.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
contactId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ERP.Domain.CRM.Application.ApplicantNote
NameDescriptionTypeAdditional information
NoteSubject

string

None.

Note

string

None.

Contactid

integer

None.

AddedBy

integer

None.

AddedByUsername

string

None.

DateAdded

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "noteSubject": "sample string 1",
    "note": "sample string 2",
    "contactid": 1,
    "addedBy": 1,
    "addedByUsername": "sample string 3",
    "dateAdded": "2025-01-19"
  },
  {
    "noteSubject": "sample string 1",
    "note": "sample string 2",
    "contactid": 1,
    "addedBy": 1,
    "addedByUsername": "sample string 3",
    "dateAdded": "2025-01-19"
  }
]

application/xml, text/xml

Sample:
<ArrayOfApplicantNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ERP.Domain.CRM.Application">
  <ApplicantNote>
    <AddedBy>1</AddedBy>
    <AddedByUsername>sample string 3</AddedByUsername>
    <Contactid>1</Contactid>
    <DateAdded>2025-01-19T00:26:18.7540725+00:00</DateAdded>
    <Note>sample string 2</Note>
    <NoteSubject>sample string 1</NoteSubject>
  </ApplicantNote>
  <ApplicantNote>
    <AddedBy>1</AddedBy>
    <AddedByUsername>sample string 3</AddedByUsername>
    <Contactid>1</Contactid>
    <DateAdded>2025-01-19T00:26:18.7540725+00:00</DateAdded>
    <Note>sample string 2</Note>
    <NoteSubject>sample string 1</NoteSubject>
  </ApplicantNote>
</ArrayOfApplicantNote>