GET api/residents/{residentId}/residentNotes/{residentNoteId}
Get resident note by id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
residentNoteId |
|
integer |
Required |
residentId |
|
string |
None. |
Body Parameters
None.
Response Information
Resource Description
Resident note
ResidentNoteViewModelName | Description | Type | Additional information |
---|---|---|---|
Id |
|
integer |
None. |
Comment |
|
string |
None. |
NoteDate |
|
date |
None. |
Description |
|
string |
None. |
NoteType |
|
string |
None. |
ResidentNoteType |
|
ResidentNoteTypeViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "id": 1, "comment": "sample string 2", "noteDate": "2025-04-03T18:07:08.3255396-04:00", "description": "sample string 4", "noteType": "sample string 5", "residentNoteType": { "hasResidentNotes": true, "code": "sample string 2", "description": "sample string 3" } }
application/xml, text/xml
Sample:
<ResidentNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <Comment>sample string 2</Comment> <Description>sample string 4</Description> <Id>1</Id> <NoteDate>2025-04-03T18:07:08.3255396-04:00</NoteDate> <NoteType>sample string 5</NoteType> <ResidentNoteType> <Code>sample string 2</Code> <Description>sample string 3</Description> <HasResidentNotes>true</HasResidentNotes> </ResidentNoteType> </ResidentNoteViewModel>