GET api/buildingnotes/{buildingId}/buildingnotes/{buildingNoteId}
Get building note by id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| buildingNoteId |
|
integer |
Required |
| buildingId |
|
string |
None. |
Body Parameters
None.
Response Information
Resource Description
Building note
BuildingNoteViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
|
integer |
None. |
| BuildingId |
|
integer |
None. |
| NoteTypeId |
|
integer |
None. |
| NoteType |
|
BuildingNoteTypeViewModel |
None. |
| NoteDate |
|
date |
None. |
| NoteText |
|
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"buildingId": 2,
"noteTypeId": 3,
"noteType": {
"id": 1,
"noteType": "sample string 2",
"noteTypeDescription": "sample string 3",
"hasBuildingNotes": true
},
"noteDate": "2025-10-29T04:44:44.7317398-04:00",
"noteText": "sample string 5"
}
application/xml, text/xml
Sample:
<BuildingNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
<BuildingId>2</BuildingId>
<Id>1</Id>
<NoteDate>2025-10-29T04:44:44.7317398-04:00</NoteDate>
<NoteText>sample string 5</NoteText>
<NoteType>
<HasBuildingNotes>true</HasBuildingNotes>
<Id>1</Id>
<NoteType>sample string 2</NoteType>
<NoteTypeDescription>sample string 3</NoteTypeDescription>
</NoteType>
<NoteTypeId>3</NoteTypeId>
</BuildingNoteViewModel>