GET api/collectionsbuildingpolicyprofilenotes/{id}

GET: api/collectionsbuildingpolicyprofilenotes/{id} Get the item information by the Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CollectionsBuildingPolicyProfileNoteViewModel

CollectionsBuildingPolicyProfileNoteViewModel
NameDescriptionTypeAdditional 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

Sample:
{
  "id": 1,
  "buildingPolicyProfileId": 2,
  "note": "sample string 3",
  "isSystemGenerated": true,
  "createdBy": 5,
  "createdOn": "2024-10-13T16:21:31.3909777-04:00",
  "modifiedBy": 1,
  "modifiedOn": "2024-10-13T16:21:31.3909777-04:00"
}

application/xml, text/xml

Sample:
<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>2024-10-13T16:21:31.3909777-04:00</CreatedOn>
  <Id>1</Id>
  <IsSystemGenerated>true</IsSystemGenerated>
  <ModifiedBy>1</ModifiedBy>
  <ModifiedOn>2024-10-13T16:21:31.3909777-04:00</ModifiedOn>
  <Note>sample string 3</Note>
</CollectionsBuildingPolicyProfileNoteViewModel>