GET api/BankReport/GetCapitalInterestDistributed?BranchId={BranchId}&Month={Month}&Year={Year}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchId | integer |
Required |
|
| Month | integer |
Required |
|
| Year | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CapitalDistributed| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchName | string |
None. |
|
| AvgBalanace | decimal number |
None. |
|
| InterestAmount | decimal number |
None. |
|
| InterestPer | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BranchName": "sample string 1",
"AvgBalanace": 2.0,
"InterestAmount": 3.0,
"InterestPer": 4.0
},
{
"BranchName": "sample string 1",
"AvgBalanace": 2.0,
"InterestAmount": 3.0,
"InterestPer": 4.0
}
]
application/xml, text/xml
Sample:
<ArrayOfCapitalDistributed xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
<CapitalDistributed>
<AvgBalanace>2</AvgBalanace>
<BranchName>sample string 1</BranchName>
<InterestAmount>3</InterestAmount>
<InterestPer>4</InterestPer>
</CapitalDistributed>
<CapitalDistributed>
<AvgBalanace>2</AvgBalanace>
<BranchName>sample string 1</BranchName>
<InterestAmount>3</InterestAmount>
<InterestPer>4</InterestPer>
</CapitalDistributed>
</ArrayOfCapitalDistributed>