POST api/RegisteredUserNote/Update
Update note
Request Information
URI Parameters
None.
Body Parameters
RegisteredUserNote| Name | Description | Type | Additional information |
|---|---|---|---|
| RegisteredUserNoteID | integer |
None. |
|
| RegisteredUserID | integer |
None. |
|
| BIUserID | integer |
None. |
|
| Comment | string |
None. |
|
| DateFlag | date |
None. |
|
| FullName | string |
None. |
|
| Avatar | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"RegisteredUserNoteID": 1,
"RegisteredUserID": 2,
"BIUserID": 3,
"Comment": "sample string 4",
"DateFlag": "2026-03-10T20:16:49.392364+02:00",
"FullName": "sample string 6",
"Avatar": "sample string 7"
}
application/xml, text/xml
Sample:
<RegisteredUserNote 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:49.392364+02:00</DateFlag> <FullName>sample string 6</FullName> <RegisteredUserID>2</RegisteredUserID> <RegisteredUserNoteID>1</RegisteredUserNoteID> </RegisteredUserNote>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JsonResultOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | string |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.