GET api/account/propertyaccountswithbalance?groupId={groupId}

Get a list of basic property account information and balances for accounts associated with a group Processes this account API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
groupId

Group id

integer

Required

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

Collection of PropertyAccountWithBalanceDataContract
NameDescriptionTypeAdditional 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.

IsCurrent

Indicates whether this item is current.

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "AvailableBalance": 3.0,
    "UnclearedBalance": 4.0,
    "TotalBalance": 5.0,
    "IsCurrent": true
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "AvailableBalance": 3.0,
    "UnclearedBalance": 4.0,
    "TotalBalance": 5.0,
    "IsCurrent": true
  }
]