GET residentapi/properties/{propertyId}/directory/committees/summary
Gets committees and member count of user registered on directory by propertyId (committees with no members will be excluded)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| propertyId |
(Required) |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ListWrapperOfCommitteeSummary| Name | Description | Type | Additional information |
|---|---|---|---|
| Total | integer |
None. |
|
| Elements | Collection of CommitteeSummary |
None. |
Response Formats
application/json, text/json
Sample:
{
"total": 1,
"elements": [
{
"propertyCommitteeId": 1,
"connectCommitteeId": 2,
"name": "sample string 3",
"numberOfUsers": 4
},
{
"propertyCommitteeId": 1,
"connectCommitteeId": 2,
"name": "sample string 3",
"numberOfUsers": 4
}
]
}