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

NameDescriptionTypeAdditional information
propertyId

(Required)

integer

Required

Body Parameters

None.

Response Information

Resource Description

ListWrapperOfCommitteeSummary
NameDescriptionTypeAdditional 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
    }
  ]
}