GET api/account/group/{groupId}/properties
Get all property accounts by group id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupId |
Group id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PropertyAccountWithBalanceDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Name | string |
None. |
|
| AvailableBalance | decimal number |
None. |
|
| UnclearedBalance | decimal number |
None. |
|
| TotalBalance | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"AvailableBalance": 3.0,
"UnclearedBalance": 4.0,
"TotalBalance": 5.0
},
{
"Id": 1,
"Name": "sample string 2",
"AvailableBalance": 3.0,
"UnclearedBalance": 4.0,
"TotalBalance": 5.0
}
]