GET residentapi/properties/{propertyId}/camacctbankbalance
Returns the bank balances from CamAcct for a specific property.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| propertyId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ListWrapperOfCamAcctBankBalance| Name | Description | Type | Additional information |
|---|---|---|---|
| Total | integer |
None. |
|
| Elements | Collection of CamAcctBankBalance |
None. |
Response Formats
application/json, text/json
Sample:
{
"total": 1,
"elements": [
{
"bankCode": "sample string 1",
"bankName": "sample string 2",
"currentBalance": 3.0,
"isDefault": true
},
{
"bankCode": "sample string 1",
"bankName": "sample string 2",
"currentBalance": 3.0,
"isDefault": true
}
]
}