PUT api/residents/{residentId}/residentNotes/{residentNoteId}
Save resident note
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| residentId |
|
integer |
Required |
| residentNoteId |
|
integer |
Required |
Body Parameters
SaveResidentNoteViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Comment |
Comment |
string |
None. |
| NoteDate |
Note Date |
string |
Required |
| NoteType |
Note Type |
string |
Required |
| Description |
Description |
string |
Max length: 100 |
Request Formats
application/json, text/json
Sample:
{
"comment": "sample string 1",
"noteDate": "sample string 2",
"noteType": "sample string 3",
"description": "sample string 4"
}
application/xml, text/xml
Sample:
<SaveResidentNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels.Residents"> <Comment>sample string 1</Comment> <Description>sample string 4</Description> <NoteDate>sample string 2</NoteDate> <NoteType>sample string 3</NoteType> </SaveResidentNoteViewModel>
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.