GET residentapi/properties/{propertyId}/infocenterdocuments?page={page}&pageSize={pageSize}
Get all InfoCenterDocument by propertyId
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| propertyId |
ConnectPropertyId to get the data for |
integer |
Required |
| page |
(Optional)The page number of returned records based on the page size |
integer |
0 |
| pageSize |
(Optional)The number of records to return per page |
integer |
0 |
Body Parameters
None.
Response Information
Resource Description
ListWrapperOfInfoCenterDocument| Name | Description | Type | Additional information |
|---|---|---|---|
| Total | integer |
None. |
|
| Elements | Collection of InfoCenterDocument |
None. |
Response Formats
application/json, text/json
Sample:
{
"total": 1,
"elements": [
{
"documentId": 1,
"answerid": 1,
"filename": "sample string 2",
"createdBy": 1,
"createdOn": "2025-12-24T09:15:16.5801145-05:00",
"lastmodifiedBy": 1,
"lastmodifiedOn": "2025-12-24T09:15:16.5801145-05:00",
"pathToFile": "sample string 3"
},
{
"documentId": 1,
"answerid": 1,
"filename": "sample string 2",
"createdBy": 1,
"createdOn": "2025-12-24T09:15:16.5801145-05:00",
"lastmodifiedBy": 1,
"lastmodifiedOn": "2025-12-24T09:15:16.5801145-05:00",
"pathToFile": "sample string 3"
}
]
}