# DmtApi.BankApi

All URIs are relative to *http://180.179.217.85/uvarechargeapi/dmt_api.aspx*

Method | HTTP request | Description
------------- | ------------- | -------------
[**banklistPost**](BankApi.md#banklistPost) | **POST** /banklist | Fetch bank list


<a name="banklistPost"></a>
# **banklistPost**
> banklistPost(_function, uniqueid)

Fetch bank list

For registering beneficiary need to show the bank list. So need this api to fetch banks supported.

### Example
```javascript
var DmtApi = require('dmt_api');

var apiInstance = new DmtApi.BankApi();

var _function = "banklist"; // String | FUNCTION NAME

var uniqueid = 56; // Number | UVA UNIQ ID


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
apiInstance.banklistPost(_function, uniqueid, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **_function** | **String**| FUNCTION NAME | [default to banklist]
 **uniqueid** | **Number**| UVA UNIQ ID | 

### Return type

null (empty response body)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: application/x-www-form-urlencoded
 - **Accept**: application/json

