GET api/Accounting/Balance
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of AccountBalance| Name | Description | Type | Additional information |
|---|---|---|---|
| accountNo | integer |
None. |
|
| year | integer |
None. |
|
| month | integer |
None. |
|
| flowDomestic | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"accountNo": 1,
"year": 2,
"month": 3,
"flowDomestic": 1.0
},
{
"accountNo": 1,
"year": 2,
"month": 3,
"flowDomestic": 1.0
}
]
application/xml, text/xml
Sample:
<ArrayOfAccountBalance xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<AccountBalance>
<accountNo>1</accountNo>
<year>2</year>
<month>3</month>
<flowDomestic>1</flowDomestic>
</AccountBalance>
<AccountBalance>
<accountNo>1</accountNo>
<year>2</year>
<month>3</month>
<flowDomestic>1</flowDomestic>
</AccountBalance>
</ArrayOfAccountBalance>