PUT api/buildingnotes/{buildingNoteId}
Update a Building Note
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| buildingNoteId |
|
integer |
Required |
Body Parameters
UpdateBuildingNoteViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| comment |
|
string |
None. |
| NoteType |
|
integer |
Required |
| NoteDate |
|
date |
Required |
Request Formats
application/json, text/json
Sample:
{
"comment": "sample string 1",
"noteType": 2,
"noteDate": "2025-10-29T04:36:40.9487698-04:00"
}
application/xml, text/xml
Sample:
<UpdateBuildingNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <NoteDate>2025-10-29T04:36:40.9487698-04:00</NoteDate> <NoteType>2</NoteType> <comment>sample string 1</comment> </UpdateBuildingNoteViewModel>
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.