POST api/MemberNote/Add

Add member note

Request Information

URI Parameters

None.

Body Parameters

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.

Request Formats

application/json, text/json

Sample:
{
  "MemberNoteID": 1,
  "MemberID": 2,
  "BIUserID": 3,
  "Comment": "sample string 4",
  "DateFlag": "2026-03-10T20:16:48.8918064+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:16:48.8918064+02:00</DateFlag>
  <FullName>sample string 6</FullName>
  <IsFollowUp>true</IsFollowUp>
  <MemberID>2</MemberID>
  <MemberNoteID>1</MemberNoteID>
</MemberNote>

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 'MemberNote'.

Response Information

Resource Description

JsonResultOfString
NameDescriptionTypeAdditional information
Content

string

None.

SerializerSettings

JsonSerializerSettings

None.

Encoding

Encoding

None.

Request

HttpRequestMessage

None.

Response Formats

application/json, text/json

Sample:

Sample not available.