POST api/profile/postprofilenotes

Request Information

URI Parameters

None.

Body Parameters

PostProfileNotesRequest
NameDescriptionTypeAdditional information
ChapterId

integer

None.

ProfileId

integer

None.

Notes

string

None.

ReminderOn

date

None.

ReminderStatusId

byte

None.

NotesStatusId

byte

None.

Request Formats

application/json, text/json

Sample:
{
  "ChapterId": 1,
  "ProfileId": 2,
  "Notes": "sample string 3",
  "ReminderOn": "2026-01-12T01:32:52.0349249+00:00",
  "ReminderStatusId": 64,
  "NotesStatusId": 64
}

application/xml, text/xml

Sample:
<PostProfileNotesRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ModelsLayer">
  <ChapterId>1</ChapterId>
  <Notes>sample string 3</Notes>
  <NotesStatusId>64</NotesStatusId>
  <ProfileId>2</ProfileId>
  <ReminderOn>2026-01-12T01:32:52.0349249+00:00</ReminderOn>
  <ReminderStatusId>64</ReminderStatusId>
</PostProfileNotesRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.