GET api/accountingsystem/systembalance

Gets accounting system balance Processes this accounting system API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

AccountingSystemBalanceDataContract
NameDescriptionTypeAdditional information
Balance

The balance value.

decimal number

None.

IsSystemBalanced

Indicates whether this item is system balanced.

boolean

None.

TotalBankAccountsBalance

The total bank accounts balance value.

decimal number

None.

TotalDepositsAccountsBalance

The total deposits accounts balance value.

decimal number

None.

TotalClientAndSystemAccountsBalance

The total client and system accounts balance value.

decimal number

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Balance": 1.0,
  "IsSystemBalanced": true,
  "TotalBankAccountsBalance": 3.0,
  "TotalDepositsAccountsBalance": 4.0,
  "TotalClientAndSystemAccountsBalance": 5.0,
  "Id": 6
}