GET api/Accounting/LedgerAccounts/TransactionsBalance?year={year}&month={month}&fromAccountNo={fromAccountNo}&toAccountNo={toAccountNo}&fromOrgUnit1Id={fromOrgUnit1Id}&toOrgUnit1Id={toOrgUnit1Id}&overrideClient={overrideClient}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| year | integer |
Required |
|
| month | integer |
None. |
|
| fromAccountNo | integer |
None. |
|
| toAccountNo | integer |
None. |
|
| fromOrgUnit1Id | integer |
None. |
|
| toOrgUnit1Id | integer |
None. |
|
| overrideClient | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of LedgerAccountTransactionBalance| Name | Description | Type | Additional information |
|---|---|---|---|
| accountNo | integer |
None. |
|
| year | integer |
None. |
|
| month | integer |
None. |
|
| debitChange | decimal number |
None. |
|
| creditChange | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"accountNo": 1,
"year": 2,
"month": 3,
"debitChange": 4.0,
"creditChange": 5.0
},
{
"accountNo": 1,
"year": 2,
"month": 3,
"debitChange": 4.0,
"creditChange": 5.0
}
]
application/xml, text/xml
Sample:
<ArrayOfLedgerAccountTransactionBalance xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<LedgerAccountTransactionBalance>
<accountNo>1</accountNo>
<year>2</year>
<month>3</month>
<debitChange>4</debitChange>
<creditChange>5</creditChange>
</LedgerAccountTransactionBalance>
<LedgerAccountTransactionBalance>
<accountNo>1</accountNo>
<year>2</year>
<month>3</month>
<debitChange>4</debitChange>
<creditChange>5</creditChange>
</LedgerAccountTransactionBalance>
</ArrayOfLedgerAccountTransactionBalance>