GET GetWalletSummary?Username={Username}&Password={Password}&From={From}&To={To}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| Username | string | Required | |
| Password | string | Required | |
| From | date | Required | |
| To | date | Required | 
Body Parameters
None.
Response Information
Resource Description
Collection of WalletSummaryModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| Type | string | None. | |
| Amount | decimal number | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Type": "sample string 1",
    "Amount": 1.0
  },
  {
    "Type": "sample string 1",
    "Amount": 1.0
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfWalletSummaryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aathifrupay.Api.Models">
  <WalletSummaryModel>
    <Amount>1</Amount>
    <Type>sample string 1</Type>
  </WalletSummaryModel>
  <WalletSummaryModel>
    <Amount>1</Amount>
    <Type>sample string 1</Type>
  </WalletSummaryModel>
</ArrayOfWalletSummaryModel>