PUT api/entitynotes/{id}
Update note
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Note Id |
integer |
Required |
Body Parameters
UpdateNoteEntityViewModelName | Description | Type | Additional information |
---|---|---|---|
ReferenceId |
Reference Id (GL Entity Id) |
integer |
Required |
NoteTitle |
Note Title |
string |
None. |
Note |
Note |
string |
Required String length: inclusive between 0 and 500 |
IsPinned |
IsPinned |
boolean |
None. |
EffectiveDate |
Effective Date |
date |
Required |
TerminationDate |
Termination Date |
date |
Required |
DisplayInRSM |
Display In RSM |
boolean |
None. |
NoteType |
NoteType |
integer |
Required Range: inclusive between 1 and 2 |
Order |
Note Order |
integer |
None. |
Request Formats
application/json, text/json
{ "referenceId": 1, "noteTitle": "sample string 2", "note": "sample string 3", "isPinned": true, "effectiveDate": "2025-04-03T17:37:44.3233643-04:00", "terminationDate": "2025-04-03T17:37:44.3233643-04:00", "displayInRSM": true, "noteType": 8, "order": 1 }
application/xml, text/xml
<UpdateNoteEntityViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.Notes"> <DisplayInRSM>true</DisplayInRSM> <EffectiveDate>2025-04-03T17:37:44.3233643-04:00</EffectiveDate> <IsPinned>true</IsPinned> <Note>sample string 3</Note> <NoteTitle>sample string 2</NoteTitle> <NoteType>8</NoteType> <Order>1</Order> <TerminationDate>2025-04-03T17:37:44.3233643-04:00</TerminationDate> <ReferenceId>1</ReferenceId> </UpdateNoteEntityViewModel>
application/x-www-form-urlencoded
Response Information
Resource Description
NoteEntityViewModel
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.