GET api/collectionsbuildingstagenotes

GET: api/collectionsbuildingstagenotes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CollectionsBuildingStageNoteViewModel
NameDescriptionTypeAdditional information
Id

BuildingStageNoteId

integer

None.

BuildingStageId

BuildingStageId

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,
    "buildingStageId": 2,
    "note": "sample string 3",
    "isSystemGenerated": true,
    "createdBy": 5,
    "createdOn": "2024-10-14T08:23:11.8438532-04:00",
    "modifiedBy": 1,
    "modifiedOn": "2024-10-14T08:23:11.8438532-04:00"
  },
  {
    "id": 1,
    "buildingStageId": 2,
    "note": "sample string 3",
    "isSystemGenerated": true,
    "createdBy": 5,
    "createdOn": "2024-10-14T08:23:11.8438532-04:00",
    "modifiedBy": 1,
    "modifiedOn": "2024-10-14T08:23:11.8438532-04:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCollectionsBuildingStageNoteViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
  <CollectionsBuildingStageNoteViewModel>
    <BuildingStageId>2</BuildingStageId>
    <CreatedBy>5</CreatedBy>
    <CreatedOn>2024-10-14T08:23:11.8438532-04:00</CreatedOn>
    <Id>1</Id>
    <IsSystemGenerated>true</IsSystemGenerated>
    <ModifiedBy>1</ModifiedBy>
    <ModifiedOn>2024-10-14T08:23:11.8438532-04:00</ModifiedOn>
    <Note>sample string 3</Note>
  </CollectionsBuildingStageNoteViewModel>
  <CollectionsBuildingStageNoteViewModel>
    <BuildingStageId>2</BuildingStageId>
    <CreatedBy>5</CreatedBy>
    <CreatedOn>2024-10-14T08:23:11.8438532-04:00</CreatedOn>
    <Id>1</Id>
    <IsSystemGenerated>true</IsSystemGenerated>
    <ModifiedBy>1</ModifiedBy>
    <ModifiedOn>2024-10-14T08:23:11.8438532-04:00</ModifiedOn>
    <Note>sample string 3</Note>
  </CollectionsBuildingStageNoteViewModel>
</ArrayOfCollectionsBuildingStageNoteViewModel>