PUT api/residents/{residentId}/residentNotes/{residentNoteId}

Save resident note

Request Information

URI Parameters

NameDescriptionTypeAdditional information
residentId

integer

Required

residentNoteId

integer

Required

Body Parameters

SaveResidentNoteViewModel
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SaveResidentNoteViewModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.