GET api/MemberNote/Get/{id}

Find member note item

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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:19:58.5549578+02:00",
  "FullName": "sample string 6",
  "Avatar": "sample string 7",
  "IsFollowUp": true
}

application/xml, text/xml

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