GET api/TransactionDetailAccountStatement?strBranch={strBranch}&strAccode={strAccode}&strFromDate={strFromDate}&strToDate={strToDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| strBranch | string |
Required |
|
| strAccode | string |
Required |
|
| strFromDate | string |
Required |
|
| strToDate | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of TransDetStatement| Name | Description | Type | Additional information |
|---|---|---|---|
| BRANCH_CODE | string |
None. |
|
| DIVISION | string |
None. |
|
| AMOUNT | string |
None. |
|
| QUANTITY | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BRANCH_CODE": "sample string 1",
"DIVISION": "sample string 2",
"AMOUNT": "sample string 3",
"QUANTITY": "sample string 4"
},
{
"BRANCH_CODE": "sample string 1",
"DIVISION": "sample string 2",
"AMOUNT": "sample string 3",
"QUANTITY": "sample string 4"
}
]
text/html
Sample:
[{"BRANCH_CODE":"sample string 1","DIVISION":"sample string 2","AMOUNT":"sample string 3","QUANTITY":"sample string 4"},{"BRANCH_CODE":"sample string 1","DIVISION":"sample string 2","AMOUNT":"sample string 3","QUANTITY":"sample string 4"}]
application/xml, text/xml
Sample:
<ArrayOfTransDetStatement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SBSMobileReportingApi.Models">
<TransDetStatement>
<AMOUNT>sample string 3</AMOUNT>
<BRANCH_CODE>sample string 1</BRANCH_CODE>
<DIVISION>sample string 2</DIVISION>
<QUANTITY>sample string 4</QUANTITY>
</TransDetStatement>
<TransDetStatement>
<AMOUNT>sample string 3</AMOUNT>
<BRANCH_CODE>sample string 1</BRANCH_CODE>
<DIVISION>sample string 2</DIVISION>
<QUANTITY>sample string 4</QUANTITY>
</TransDetStatement>
</ArrayOfTransDetStatement>