GET api/collectionsbuildingpolicyprofilenotes/{id}
GET: api/collectionsbuildingpolicyprofilenotes/{id} Get the item information by the Id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
|
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CollectionsBuildingPolicyProfileNoteViewModel
CollectionsBuildingPolicyProfileNoteViewModelName | Description | Type | Additional information |
---|---|---|---|
Id |
BuildingPolicyProfileNoteId |
integer |
None. |
BuildingPolicyProfileId |
BuildingPolicyProfileId |
integer |
None. |
Note |
Note |
string |
None. |
IsSystemGenerated |
IsSystemGenerated |
boolean |
None. |
CreatedBy |
CreatedBy |
integer |
None. |
CreatedOn |
CreatedOn |
date |
None. |
ModifiedBy |
ModifiedBy |
integer |
None. |
ModifiedOn |
ModifiedOn |
date |
None. |
Response Formats
application/json, text/json
{ "id": 1, "buildingPolicyProfileId": 2, "note": "sample string 3", "isSystemGenerated": true, "createdBy": 5, "createdOn": "2025-04-03T18:02:20.1196341-04:00", "modifiedBy": 1, "modifiedOn": "2025-04-03T18:02:20.1196341-04:00" }
application/xml, text/xml
<CollectionsBuildingPolicyProfileNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels"> <BuildingPolicyProfileId>2</BuildingPolicyProfileId> <CreatedBy>5</CreatedBy> <CreatedOn>2025-04-03T18:02:20.1196341-04:00</CreatedOn> <Id>1</Id> <IsSystemGenerated>true</IsSystemGenerated> <ModifiedBy>1</ModifiedBy> <ModifiedOn>2025-04-03T18:02:20.1196341-04:00</ModifiedOn> <Note>sample string 3</Note> </CollectionsBuildingPolicyProfileNoteViewModel>