POST api/user/PostUserNote

Request Information

URI Parameters

None.

Body Parameters

UserFollowUpLogPost
NameDescriptionTypeAdditional information
UserId

integer

None.

Note

string

None.

IsFollowUpDone

boolean

None.

NextFollowUpTime

date

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "Note": "sample string 1",
  "IsFollowUpDone": true,
  "NextFollowUpTime": "2024-11-22T05:57:32.3818432+00:00"
}

application/xml, text/xml

Sample:
<UserFollowUpLogPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PostLibrary.User">
  <IsFollowUpDone>true</IsFollowUpDone>
  <NextFollowUpTime>2024-11-22T05:57:32.3818432+00:00</NextFollowUpTime>
  <Note>sample string 1</Note>
  <UserId>1</UserId>
</UserFollowUpLogPost>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.