GET api/account/group/{groupId}/properties
Get all property accounts by group id Processes this account group API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupId |
Group id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The response returned after the operation completes.
Collection of PropertyAccountWithBalanceDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The unique identifier of this resource. |
integer |
None. |
| Name |
The name value. |
string |
None. |
| AvailableBalance |
The available balance value. |
decimal number |
None. |
| UnclearedBalance |
The uncleared balance value. |
decimal number |
None. |
| TotalBalance |
The total balance value. |
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
}
]