GET api/Watches/GetBankDetails?BranchId={BranchId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of MBMGBank| Name | Description | Type | Additional information |
|---|---|---|---|
| AvailableBalance | decimal number |
None. |
|
| CurrentBalance | decimal number |
None. |
|
| LastReconcileDate | string |
None. |
|
| BranchName | string |
None. |
|
| BranchId | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AvailableBalance": 1.0,
"CurrentBalance": 2.0,
"LastReconcileDate": "sample string 3",
"BranchName": "sample string 4",
"BranchId": "sample string 5"
},
{
"AvailableBalance": 1.0,
"CurrentBalance": 2.0,
"LastReconcileDate": "sample string 3",
"BranchName": "sample string 4",
"BranchId": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfMBMGBank xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
<MBMGBank>
<AvailableBalance>1</AvailableBalance>
<BranchId>sample string 5</BranchId>
<BranchName>sample string 4</BranchName>
<CurrentBalance>2</CurrentBalance>
<LastReconcileDate>sample string 3</LastReconcileDate>
</MBMGBank>
<MBMGBank>
<AvailableBalance>1</AvailableBalance>
<BranchId>sample string 5</BranchId>
<BranchName>sample string 4</BranchName>
<CurrentBalance>2</CurrentBalance>
<LastReconcileDate>sample string 3</LastReconcileDate>
</MBMGBank>
</ArrayOfMBMGBank>