GET api/MGDReport/GetBankType

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of BankDetails
NameDescriptionTypeAdditional information
BRANCHNAME

string

None.

BRANCHID

string

None.

AVAILABLEBALANCE

decimal number

None.

LASTRECONCILEDATE

string

None.

CURRENTBALANCE

decimal number

None.

ReconAging

integer

None.

TransDate

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "BRANCHNAME": "sample string 1",
    "BRANCHID": "sample string 2",
    "AVAILABLEBALANCE": 3.0,
    "LASTRECONCILEDATE": "sample string 4",
    "CURRENTBALANCE": 5.0,
    "ReconAging": 6,
    "TransDate": "sample string 7"
  },
  {
    "BRANCHNAME": "sample string 1",
    "BRANCHID": "sample string 2",
    "AVAILABLEBALANCE": 3.0,
    "LASTRECONCILEDATE": "sample string 4",
    "CURRENTBALANCE": 5.0,
    "ReconAging": 6,
    "TransDate": "sample string 7"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBankDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AXCommunication.Models">
  <BankDetails>
    <AVAILABLEBALANCE>3</AVAILABLEBALANCE>
    <BRANCHID>sample string 2</BRANCHID>
    <BRANCHNAME>sample string 1</BRANCHNAME>
    <CURRENTBALANCE>5</CURRENTBALANCE>
    <LASTRECONCILEDATE>sample string 4</LASTRECONCILEDATE>
    <ReconAging>6</ReconAging>
    <TransDate>sample string 7</TransDate>
  </BankDetails>
  <BankDetails>
    <AVAILABLEBALANCE>3</AVAILABLEBALANCE>
    <BRANCHID>sample string 2</BRANCHID>
    <BRANCHNAME>sample string 1</BRANCHNAME>
    <CURRENTBALANCE>5</CURRENTBALANCE>
    <LASTRECONCILEDATE>sample string 4</LASTRECONCILEDATE>
    <ReconAging>6</ReconAging>
    <TransDate>sample string 7</TransDate>
  </BankDetails>
</ArrayOfBankDetails>