GET api/BankReport/GetCR_DRReport?companyId={companyId}&branchid={branchid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyId | integer |
Required |
|
| branchid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CR_DRReport| Name | Description | Type | Additional information |
|---|---|---|---|
| Month | string |
None. |
|
| Year | integer |
None. |
|
| Type | string |
None. |
|
| Amount | decimal number |
None. |
|
| AmountUpto | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Month": "sample string 1",
"Year": 2,
"Type": "sample string 3",
"Amount": 4.0,
"AmountUpto": 5.0
},
{
"Month": "sample string 1",
"Year": 2,
"Type": "sample string 3",
"Amount": 4.0,
"AmountUpto": 5.0
}
]
application/xml, text/xml
Sample:
<ArrayOfCR_DRReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
<CR_DRReport>
<Amount>4</Amount>
<AmountUpto>5</AmountUpto>
<Month>sample string 1</Month>
<Type>sample string 3</Type>
<Year>2</Year>
</CR_DRReport>
<CR_DRReport>
<Amount>4</Amount>
<AmountUpto>5</AmountUpto>
<Month>sample string 1</Month>
<Type>sample string 3</Type>
<Year>2</Year>
</CR_DRReport>
</ArrayOfCR_DRReport>