GET api/MemberNote/GetAll/{id}

Find member notes

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MemberNote
NameDescriptionTypeAdditional information
MemberNoteID

integer

None.

MemberID

integer

None.

BIUserID

integer

None.

Comment

string

None.

DateFlag

date

None.

FullName

string

None.

Avatar

string

None.

IsFollowUp

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MemberNoteID": 1,
    "MemberID": 2,
    "BIUserID": 3,
    "Comment": "sample string 4",
    "DateFlag": "2026-03-10T20:20:00.4632621+02:00",
    "FullName": "sample string 6",
    "Avatar": "sample string 7",
    "IsFollowUp": true
  },
  {
    "MemberNoteID": 1,
    "MemberID": 2,
    "BIUserID": 3,
    "Comment": "sample string 4",
    "DateFlag": "2026-03-10T20:20:00.4632621+02:00",
    "FullName": "sample string 6",
    "Avatar": "sample string 7",
    "IsFollowUp": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfMemberNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XPH.Entities.Core">
  <MemberNote>
    <Avatar>sample string 7</Avatar>
    <BIUserID>3</BIUserID>
    <Comment>sample string 4</Comment>
    <DateFlag>2026-03-10T20:20:00.4632621+02:00</DateFlag>
    <FullName>sample string 6</FullName>
    <IsFollowUp>true</IsFollowUp>
    <MemberID>2</MemberID>
    <MemberNoteID>1</MemberNoteID>
  </MemberNote>
  <MemberNote>
    <Avatar>sample string 7</Avatar>
    <BIUserID>3</BIUserID>
    <Comment>sample string 4</Comment>
    <DateFlag>2026-03-10T20:20:00.4632621+02:00</DateFlag>
    <FullName>sample string 6</FullName>
    <IsFollowUp>true</IsFollowUp>
    <MemberID>2</MemberID>
    <MemberNoteID>1</MemberNoteID>
  </MemberNote>
</ArrayOfMemberNote>