POST residentapi/committees
Create a committee
Request Information
URI Parameters
None.
Body Parameters
PropertyCommitteeCreate| Name | Description | Type | Additional information |
|---|---|---|---|
| C4UID |
C4UID. Needed to figure out the market that this committee belongs to. |
string |
Required |
| ConnectPropertyId |
ConnectPropertyId. Needed to figure out which cws property that this committee belongs to |
integer |
Required |
| ConnectCommitteeId |
ConnectCommitteeId. CommitteeId from connect application |
integer |
Required |
| Name |
Name. Name of the committee |
string |
Required |
| Description |
Description. Description of the committee |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"c4UID": "sample string 1",
"connectPropertyId": 2,
"connectCommitteeId": 3,
"name": "sample string 4",
"description": "sample string 5"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PropertyCommittee| Name | Description | Type | Additional information |
|---|---|---|---|
| CommitteeID |
CommitteeId (Primary key) |
integer |
None. |
| PropertyID |
PropertyID |
integer |
None. |
| ConnectCommitteeID |
ConnectCommitteeID |
integer |
None. |
| Name |
Name |
string |
None. |
| Description |
Description |
string |
None. |
| IsActive |
IsActive |
boolean |
None. |
| IsDeleted |
IsDeleted |
boolean |
None. |
| IsBoard |
IsBoard |
boolean |
None. |
| Property |
Cws Property Object |
CwsProperty |
None. |
Response Formats
application/json, text/json
Sample:
{
"property": {
"propertyId": 1,
"marketId": 2,
"connectPropertyId": 3,
"propertyName": "sample string 4"
},
"committeeID": 1,
"propertyID": 2,
"connectCommitteeID": 1,
"name": "sample string 3",
"description": "sample string 4",
"isActive": true,
"isDeleted": true,
"isBoard": true
}