POST api/user/PostUserNote
Request Information
URI Parameters
None.
Body Parameters
UserFollowUpLogPost| Name | Description | Type | Additional 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": "2025-11-08T11:41:58.5310866+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>2025-11-08T11:41:58.5310866+00:00</NextFollowUpTime> <Note>sample string 1</Note> <UserId>1</UserId> </UserFollowUpLogPost>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.