PUT api/Notes/UpdateAccountNote
Request Information
URI Parameters
None.
Body Parameters
UpdateAccountNotesRequestVMName | Description | Type | Additional information |
---|---|---|---|
NoteId | string |
Required |
|
AdminUserId | string |
Required |
|
Note | string |
Required |
|
ParentAccountId | string |
Required |
|
Type | AccountNoteTypes |
Required |
|
NoteEditorRawContent | string |
None. |
|
IsFlagMarked | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "NoteId": "sample string 1", "AdminUserId": "sample string 2", "Note": "sample string 3", "ParentAccountId": "sample string 4", "Type": "General", "NoteEditorRawContent": "sample string 5", "IsFlagMarked": true }
application/xml, text/xml
Sample:
<UpdateAccountNotesRequestVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MindMe.Business.Service.Services.RequestViewModels.Notes"> <AdminUserId>sample string 2</AdminUserId> <IsFlagMarked>true</IsFlagMarked> <Note>sample string 3</Note> <NoteEditorRawContent>sample string 5</NoteEditorRawContent> <ParentAccountId>sample string 4</ParentAccountId> <Type>General</Type> <NoteId>sample string 1</NoteId> </UpdateAccountNotesRequestVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.